﻿:root {
  --text: #242424;
  --muted: #6a6a6a;
  --line: #ededed;
  --soft: #f6f7f8;
  --accent: #e6002d;
  --dark: #050505;
  --shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 72px;
  color: var(--text);
  font-family: Pretendard, "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  background: #fff;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 68px;
  display: grid;
  grid-template-columns: 190px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.brand {
  color: #555;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 26px 0;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: #111;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-actions > a:not(.phone) {
  display: none;
}

.phone {
  font-size: 23px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 23px;
}

.hero {
  width: min(1580px, 100%);
  min-height: 546px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) 1.08fr;
  align-items: center;
  background: linear-gradient(90deg, #f0efec 0%, #fbfbfa 50%, #eeeae6 100%);
  overflow: hidden;
}

.hero-copy {
  padding-left: clamp(34px, 12vw, 245px);
  padding-right: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #1673d1;
  font-size: 15px;
  font-weight: 900;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: #4a4a4a;
  font-size: 18px;
  line-height: 1.75;
}

.hero-buttons,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-btn,
.outline-btn,
.small-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 900;
}

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

.outline-btn {
  border: 1px solid #555;
  background: rgba(255, 255, 255, 0.45);
}

.hero-stage {
  position: relative;
  min-height: 546px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 8vw 60px 20px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.96), rgba(221,236,247,0.28) 60%, transparent 70%);
}

.hero-stage img {
  position: relative;
  width: min(350px, 52vw);
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.15));
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 84px);
  bottom: 74px;
  width: 178px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  color: var(--muted);
  font-size: 13px;
}

.hero-panel span {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 900;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, 146px);
  justify-content: center;
  gap: 38px;
  padding: 42px 32px 46px;
  background: #f5f5f5;
}

.category-strip a {
  min-height: 172px;
  display: grid;
  grid-template-rows: 128px auto;
  align-items: end;
  justify-items: center;
  gap: 14px;
  padding: 0 4px;
  border-radius: 8px;
  transition: transform 0.18s ease;
}

.category-strip a:hover {
  transform: translateY(-3px);
}

.category-image {
  width: 126px;
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
  box-shadow: inset 0 0 0 1px #e9e9e9, 0 7px 16px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.category-strip a:hover .category-image {
  box-shadow: inset 0 0 0 1px #ddd, 0 10px 22px rgba(0, 0, 0, 0.07);
  transform: scale(1.02);
}

.category-image img {
  display: block;
  max-width: 76%;
  max-height: 76%;
  object-fit: contain;
}

.category-image .category-water {
  max-height: 84%;
}

.category-image .category-air {
  max-height: 84%;
}

.category-image .category-bidet {
  max-width: 82%;
  max-height: 82%;
}

.category-image .category-pet {
  max-width: 82%;
  max-height: 82%;
}

.category-image .category-sleep {
  max-width: 84%;
  max-height: 74%;
}

.category-strip strong {
  color: #111;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.best-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 76px 32px 72px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.best-section h2 {
  margin: 0 0 42px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0;
}

.best-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}

.product-grid {
  gap: 30px;
}

.product-card {
  min-width: 0;
}

.product-card.best {
  text-align: center;
}

.product-card.best .product-image {
  height: 245px;
  display: grid;
  place-items: end center;
  padding: 0 8px 18px;
}

.product-card.best .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card.best .product-body {
  padding: 0 4px;
}

.product-card.best h3 {
  min-height: 42px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0;
  word-break: keep-all;
}

.product-name,
.product-model {
  display: block;
}

.product-model {
  margin-top: 3px;
  font-size: 0.86em;
  line-height: 1.35;
  font-weight: 800;
  color: #333;
  word-break: break-all;
}

.product-price {
  margin-top: 8px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
}

.original-price {
  margin-left: 6px;
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 500;
  text-decoration: line-through;
}

.badge-row {
  min-height: 24px;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 7px;
  color: #fff;
  background: #87001e;
  font-size: 11px;
  font-weight: 900;
}

.badge-row span:nth-child(even) {
  color: #87001e;
  background: #fff;
  border: 1px solid #87001e;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 70px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: #000;
  font-size: 13px;
  font-weight: 900;
}

.page-title {
  padding: 72px 24px 46px;
  text-align: center;
  background: #fafafa;
  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  margin: 0;
  font-size: 48px;
  letter-spacing: 0;
}

.page-title p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.product-detail-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 32px 58px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: start;
}

.detail-gallery {
  min-width: 0;
}

.detail-main-image {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 40px;
  background: #f8f8f8;
  border: 1px solid var(--line);
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
}

.detail-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.detail-thumbs button {
  width: 74px;
  height: 74px;
  padding: 6px;
  border: 1px solid var(--line);
  background: #fff;
}

.detail-thumbs button.is-active {
  border-color: #111;
}

.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-summary {
  padding-top: 10px;
}

.detail-category {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.detail-summary h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: 0;
  word-break: keep-all;
}

.summary-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 28px;
}

.summary-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: #fff;
  background: #111;
  font-size: 12px;
  font-weight: 900;
}

.summary-badges span.light {
  color: #7c0d17;
  background: #fff;
  box-shadow: inset 0 0 0 1px #b7b7b7;
}

.original-summary h1 {
  font-size: clamp(22px, 2.1vw, 30px);
}

.original-summary h1 span {
  display: block;
  margin-top: 4px;
  font-size: 0.78em;
  font-weight: 800;
}

.original-summary .summary-badges {
  margin: 18px 0 4px;
}

.summary-main-price {
  margin: 14px 0 42px;
  color: #000;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
}

.summary-main-price em {
  margin-right: 8px;
  font-size: 0.68em;
  font-style: normal;
  font-weight: 800;
}

.rental-price-guide h2,
.contract-note h2 {
  margin: 0 0 10px;
  color: #5a5a5a;
  font-size: 16px;
  font-weight: 900;
}

.rental-price-guide section {
  margin: 0 0 28px;
}

.rental-price-guide h3 {
  margin: 0 0 8px;
  color: #5a5a5a;
  font-size: 16px;
  font-weight: 900;
}

.rental-price-guide ul,
.contract-note ul {
  margin: 0;
  padding-left: 18px;
}

.rental-price-guide li {
  margin: 8px 0;
  color: #555;
}

.rental-price-guide li strong {
  color: #111;
  font-size: 18px;
  font-weight: 900;
}

.rental-price-guide li strong em {
  margin-left: 12px;
  color: #009fe3;
  font-size: 21px;
  font-style: normal;
  font-weight: 900;
}

.rental-price-guide li span {
  margin-left: 10px;
  color: #009fe3;
  font-size: 28px;
  font-weight: 900;
}

.rental-service-note {
  margin: 36px 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: #485060;
  font-size: 16px;
}

.rental-service-note p {
  margin: 4px 0;
}

.rental-service-note p::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 4px;
  border-radius: 50%;
  background: #58bfd6;
  box-shadow: 6px 6px 0 -2px #58bfd6;
}

.contract-note {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: #555;
}

.contract-note li {
  margin: 7px 0;
}

.summary-table {
  margin: 0;
  border-top: 1px solid #202020;
}

.summary-table div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.summary-table dt {
  color: var(--muted);
  font-weight: 800;
}

.summary-table dd {
  margin: 0;
  font-weight: 800;
}

.summary-price {
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
}

.option-box {
  margin-top: 26px;
  padding: 22px;
  background: #fafafa;
  border: 1px solid var(--line);
}

.option-box strong {
  display: block;
  margin-bottom: 14px;
}

.color-options {
  display: flex;
  gap: 8px;
}

.color-options span {
  width: 28px;
  height: 28px;
  border: 1px solid #bdbdbd;
  background: var(--swatch);
}

.detail-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}

.detail-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.detail-tabs {
  position: sticky;
  top: 68px;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.detail-tabs a {
  min-width: 170px;
  min-height: 54px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  font-weight: 900;
}

.detail-tabs a:last-child {
  border-right: 1px solid var(--line);
}

.detail-image-stack {
  max-width: 900px;
  margin: 0 auto;
  padding: 42px 24px 0;
}

.detail-image-stack img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.product-story {
  padding-top: 24px;
  padding-bottom: 72px;
}

.detail-placeholder {
  padding: 80px 24px;
  color: var(--muted);
  background: #fafafa;
  border: 1px solid var(--line);
  text-align: center;
  font-weight: 800;
}

.section,
.detail-section {
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
}

.section-head {
  margin-bottom: 34px;
  text-align: center;
}

.section-head h2,
.benefits h2,
.detail-info h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.benefits p {
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-card.listing {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.product-card.listing .product-image {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #fafafa;
}

.product-card.listing .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card.listing .product-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  flex: 1;
  text-align: left;
}

.product-card.listing h3 {
  min-height: 62px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  word-break: keep-all;
}

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

.hidden {
  display: none;
}

.detail-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 48px;
  align-items: center;
}

.detail-image {
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 38px;
  border: 1px solid var(--line);
  background: #fff;
}

.detail-image img {
  max-height: 380px;
  object-fit: contain;
}

.model {
  color: var(--muted);
  font-weight: 800;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 28px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-box span {
  color: var(--muted);
}

.price-box strong {
  color: var(--accent);
  font-size: 36px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: #4d4d4d;
  line-height: 1.7;
}

.benefits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 58px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
}

.call-number {
  font-size: clamp(36px, 4.6vw, 62px);
  font-weight: 900;
  white-space: nowrap;
}

.faq {
  width: min(920px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.faq .section-head {
  width: 100%;
}

.faq .section-head h2,
.faq summary,
.faq details p {
  width: 100%;
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: normal;
}

details {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: block;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.quick-menu {
  position: fixed;
  right: 16px;
  top: 210px;
  z-index: 25;
  display: grid;
  border: 1px solid #cacaca;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.quick-menu a {
  width: 68px;
  min-height: 62px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
}

.quick-menu a:last-child {
  border-bottom: 0;
}

.bottom-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 34px);
  padding: 8px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.06);
}

.bottom-cta span {
  font-weight: 800;
}

.bottom-cta > a:first-of-type {
  font-size: 26px;
  font-weight: 900;
}

.small-btn {
  min-height: 34px;
  color: #fff;
  background: #111;
  border-radius: 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: center;
  padding: 38px max(24px, calc((100vw - 1180px) / 2)) 52px;
  text-align: left;
  background: #303030;
}

.site-footer strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 22px;
}

.footer-info dl {
  display: grid;
  gap: 4px 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.footer-info dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  min-width: 0;
}

.footer-info dl .footer-address {
  grid-column: 1 / -1;
}

.footer-info dt,
.footer-info dd {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
  font-size: 14px;
}

.footer-info dt {
  color: rgba(255,255,255,0.52);
  font-weight: 800;
}

.footer-notice {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
  font-size: 13px;
}

.footer-call {
  padding: 22px 28px;
  border-left: 1px solid rgba(255,255,255,0.16);
  text-align: right;
}

.footer-call span {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  font-weight: 900;
}

.footer-call a {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: clamp(42px, 4.4vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.footer-call p {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
    padding: 0 24px;
  }

  .main-nav {
    gap: 18px;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    padding: 24px 0;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    bottom: 15px;
  }

  .menu-toggle {
    display: none;
  }

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

@media (max-width: 820px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    height: auto;
    min-height: 88px;
    grid-template-columns: 1fr auto;
    gap: 0 12px;
    padding: 0 20px;
    align-content: center;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    padding-top: 12px;
    font-size: 25px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    justify-content: flex-end;
    padding-top: 12px;
    padding-bottom: 0;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    gap: 24px;
    padding: 14px 0 0;
    font-size: 14px;
    font-weight: 900;
  }

  .main-nav a {
    padding: 0 0 12px;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    bottom: 0;
  }

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

  .hero-copy {
    padding: 58px 24px 12px;
  }

  .hero-stage {
    min-height: 380px;
    padding: 20px 24px 56px;
  }

  .hero-stage img {
    width: min(290px, 72vw);
  }

  .hero-panel {
    right: 22px;
    bottom: 28px;
  }

  .category-strip {
    grid-template-columns: repeat(3, 1fr);
    padding: 28px 16px;
  }

  .detail-wrap,
  .benefits,
  .product-detail-hero {
    display: grid;
    grid-template-columns: 1fr;
  }

  .detail-main-image {
    min-height: 380px;
  }

  .detail-cta-row {
    grid-template-columns: 1fr;
  }

  .detail-tabs {
    top: 110px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .detail-tabs a {
    min-width: 132px;
  }

  .quick-menu {
    display: none;
  }

  .bottom-cta {
    min-height: 52px;
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 7px 14px;
    text-align: center;
  }

  .bottom-cta span {
    flex: 0 1 auto;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
  }

  .bottom-cta > a:first-of-type {
    flex: 0 0 auto;
    font-size: 24px;
    line-height: 1;
  }

  .bottom-cta .small-btn {
    min-height: 32px;
    flex: 0 0 auto;
    padding: 0 18px;
    font-size: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer-call {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.16);
    text-align: left;
  }
}

@media (max-width: 560px) {
  .best-section {
    padding: 58px 20px;
  }

  .best-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }

  .category-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 16px;
    padding: 26px 14px 30px;
  }

  .category-strip a {
    flex: 0 0 calc((100% - 32px) / 3);
    width: auto;
    min-height: 128px;
    grid-template-rows: 88px auto;
    gap: 10px;
    padding: 0;
  }

  .category-image {
    width: 88px;
    height: 88px;
  }

  .category-strip strong {
    font-size: 14px;
  }

  .product-card.best .product-image {
    height: 230px;
    padding: 0 4px 16px;
  }

  .product-card.best .product-body {
    padding: 0 2px;
  }

  .product-card.best h3 {
    min-height: 50px;
    font-size: 13px;
    line-height: 1.35;
  }

  .product-card.best .product-model {
    margin-top: 3px;
    font-size: 12px;
  }

  .product-card.best .product-price {
    margin-top: 8px;
    font-size: 17px;
  }

  .product-card.listing .product-image {
    padding: 14px;
  }

  .product-card.listing .product-body {
    gap: 8px;
    padding: 14px;
  }

  .product-card.listing h3 {
    min-height: auto;
    font-size: 13px;
    line-height: 1.42;
  }

  .product-card.listing .product-model {
    margin-top: 3px;
    font-size: 12px;
  }

  .product-card.listing .product-price {
    font-size: 17px;
  }

  .phone {
    font-size: 20px;
  }

  .bottom-cta {
    gap: 12px;
  }

  .bottom-cta span {
    max-width: none;
    text-align: center;
    font-size: 14px;
    line-height: 1;
  }

  .bottom-cta > a:first-of-type {
    font-size: 23px;
  }

  .bottom-cta .small-btn {
    min-height: 34px;
    padding: 0 18px;
    border-radius: 18px;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .site-header {
    padding: 0 18px;
  }
}

@media (max-width: 430px) {
  .category-strip {
    gap: 16px 12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .category-strip a {
    flex-basis: calc((100% - 24px) / 3);
    width: auto;
    min-height: 120px;
    grid-template-rows: 82px auto;
  }

  .category-image {
    width: 82px;
    height: 82px;
  }

  .category-strip strong {
    font-size: 13px;
  }

  .bottom-cta {
    gap: 9px;
    padding: 7px 8px;
  }

  .bottom-cta span {
    font-size: 13px;
  }

  .bottom-cta > a:first-of-type {
    font-size: 21px;
  }

  .bottom-cta .small-btn {
    padding: 0 14px;
    font-size: 13px;
  }
}

