:root {
  --bg: #f4fbff;
  --card: #ffffff;
  --text: #07376d;
  --muted: #5d7590;
  --primary: #009fc6;
  --primary-dark: #07376d;
  --accent: #f6b51f;
  --sky: #e6f7fd;
  --line: rgba(7, 55, 109, 0.12);
  --shadow: 0 24px 60px rgba(7, 55, 109, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 159, 198, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #ffffff 100%);
  line-height: 1.6;
}

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

p a {
  color: var(--primary);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.info-strip p a {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 159, 198, 0.16);
  box-shadow: 0 8px 22px rgba(7, 55, 109, 0.16);
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero,
.page-hero,
.section,
.features,
.info-strip,
.categories,
.promo {
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
  min-height: 420px;
}

.page-hero {
  padding-top: 88px;
  padding-bottom: 48px;
}

.page-hero h1 {
  max-width: 860px;
}

.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.hero-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-info {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(246, 181, 31, 0.34), transparent 24%),
    linear-gradient(145deg, #ffffff, #e6f7fd);
  box-shadow: var(--shadow);
}

.hero-info::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(0, 159, 198, 0.16);
  border-radius: 50%;
}

.hero-info h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.hero-info p {
  color: var(--muted);
}

.hero-hours {
  display: inline-flex;
  margin: 4px 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--primary-dark) !important;
  background: #fff6d8;
  border: 1px solid rgba(246, 181, 31, 0.54);
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-info-links {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hero-info-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  padding: 12px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  font-weight: 900;
}

.hero-info-links a::after {
  content: ">";
  color: var(--accent);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 12px 28px rgba(0, 159, 198, 0.28);
}

.button.primary:hover {
  background: linear-gradient(135deg, #052a53, #0087aa);
}

.button.secondary {
  color: var(--primary-dark);
  background: #fff6d8;
  border: 1px solid rgba(246, 181, 31, 0.44);
}

.cover-banner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 36px;
}

.cover-banner img {
  display: block;
  width: 100%;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 0;
  padding-bottom: 36px;
}

.info-strip article {
  border-radius: 24px;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(246, 181, 31, 0.38), transparent 28%),
    linear-gradient(145deg, var(--primary-dark), var(--primary));
  box-shadow: var(--shadow);
}

.info-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.info-strip p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

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

.features article,
.product-card,
.contact-grid,
.promo {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.features article {
  border-radius: 24px;
  padding: 24px;
}

.features strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.features p,
.product-card p,
.promo p,
.contact p {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 28px;
}

.section-intro {
  max-width: 720px;
  color: var(--muted);
}

.categories {
  padding-top: 40px;
  padding-bottom: 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.category-grid article {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 16px;
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 55, 109, 0.96), rgba(0, 159, 198, 0.92)),
    var(--primary-dark);
  box-shadow: 0 16px 34px rgba(7, 55, 109, 0.16);
  font-weight: 900;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  border-radius: 28px;
  padding: 18px;
}

.product-card h3 {
  margin: 18px 0 8px;
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.product-image {
  height: 230px;
  border-radius: 22px;
}

.product-image.orange {
  background:
    radial-gradient(circle at 70% 30%, rgba(246, 181, 31, 0.92), transparent 28%),
    linear-gradient(145deg, #ffffff, #00a6ca);
}

.product-image.green {
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.75), transparent 24%),
    linear-gradient(145deg, #07376d, #009fc6);
}

.product-image.blue {
  background:
    radial-gradient(circle at 70% 35%, rgba(246, 181, 31, 0.72), transparent 26%),
    linear-gradient(145deg, #009fc6, #07376d);
}

.product-image.sea {
  background:
    radial-gradient(circle at 24% 26%, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(145deg, #44c7dd, #07376d);
}

.product-image.sun {
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.7), transparent 18%),
    linear-gradient(145deg, #f6b51f, #009fc6);
}

.product-image.outdoor {
  background:
    radial-gradient(circle at 30% 30%, rgba(246, 181, 31, 0.72), transparent 22%),
    linear-gradient(145deg, #07376d, #4bb2c7);
}

.products-page {
  padding-top: 28px;
}

.sea-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 22px;
  margin-bottom: 66px;
}

.sea-product-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.sea-product-card h3 {
  margin: 18px 0 8px;
  color: var(--primary-dark);
  font-size: 1.35rem;
}

.sea-product-card p {
  color: var(--muted);
}

.sea-product-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 900;
}

.product-card-link {
  display: block !important;
  margin-top: 0 !important;
  color: inherit !important;
}

.product-card-link:hover h3,
.card-cta:hover {
  color: var(--primary);
}

.card-cta {
  display: inline-flex;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 900;
}

.product-photo {
  display: block;
  width: 100%;
  height: 250px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 32px rgba(7, 55, 109, 0.12);
}

.available-colors {
  margin: 18px 0 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--sky);
}

.available-colors strong {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.available-colors img {
  display: block;
  width: 100%;
  max-height: 180px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
}

.available-colors p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--sky);
}

.product-highlights strong {
  flex: 0 0 100%;
  color: var(--primary-dark);
}

.product-highlights span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--primary-dark);
  background: #fff;
  font-size: 0.92rem;
  font-weight: 900;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px 24px;
}

.product-detail-media,
.product-detail-copy,
.cart-section {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-detail-media {
  padding: 18px;
}

.detail-photo {
  display: block;
  width: 100%;
  border-radius: 26px;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mini-gallery img {
  width: 100%;
  height: 112px;
  border: 1px solid var(--line);
  border-radius: 18px;
  object-fit: cover;
  background: #fff;
}

.detail-colors {
  margin-bottom: 0;
}

.product-detail-copy {
  padding: 34px;
}

.product-detail-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.product-detail-copy > p {
  color: var(--muted);
  font-size: 1.12rem;
}

.product-points {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.color-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 26px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--sky);
}

.color-picker legend {
  padding: 0 8px;
  color: var(--primary-dark);
  font-weight: 900;
}

.color-picker label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--primary-dark);
  background: #fff;
  cursor: pointer;
}

.color-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.color-picker label:has(input:checked) {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 159, 198, 0.16);
}

.swatch {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.split.aqua-green {
  background: linear-gradient(135deg, #00a7d8 0 50%, #80c41c 50% 100%);
}

.split.yellow-sand {
  background: linear-gradient(135deg, #f6d21f 0 50%, #d69a44 50% 100%);
}

.split.yellow-green {
  background: linear-gradient(135deg, #f7d51e 0 50%, #69b91f 50% 100%);
}

.split.red-orange {
  background: linear-gradient(135deg, #e71928 0 50%, #ff8a00 50% 100%);
}

.split.blue-red {
  background: linear-gradient(135deg, #005fd1 0 50%, #d91424 50% 100%);
}

.split.aqua-pink {
  background: linear-gradient(135deg, #009fc6 0 50%, #ec2b91 50% 100%);
}

.solid.gray {
  background: #9a9a92;
}

.solid.blue {
  background: #123b91;
}

.solid.beige {
  background: #d7c4aa;
}

.detail-actions,
.cart-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.cart-message {
  margin-top: 18px;
  color: var(--primary);
  font-weight: 900;
}

.cart-hero {
  padding-bottom: 24px;
}

.cart-section {
  padding-top: 34px;
}

.empty-cart {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 800;
}

.cart-list {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
  background: var(--sky);
}

.cart-item img {
  width: 120px;
  height: 92px;
  border-radius: 18px;
  object-fit: cover;
}

.cart-item h2 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.cart-item p {
  margin-bottom: 6px;
  color: var(--muted);
}

.cart-item button {
  border: 1px solid rgba(246, 181, 31, 0.5);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--primary-dark);
  background: #fff6d8;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cart-actions {
  margin-top: 24px;
}

.beach-product-image {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #bceeff 0 46%, #ffe7a8 46% 100%);
}

.beach-product-image::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42px;
  width: 180px;
  height: 90px;
  transform: translateX(-50%);
  border-radius: 180px 180px 0 0;
  background:
    linear-gradient(90deg, var(--primary-dark) 0 24%, #ffffff 24% 34%, var(--primary) 34% 62%, #ffffff 62% 72%, var(--accent) 72% 100%);
  box-shadow: 0 16px 30px rgba(7, 55, 109, 0.16);
}

.beach-product-image::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 132px;
  width: 10px;
  height: 92px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--primary-dark);
}

.umbrella-yellow::before {
  background:
    linear-gradient(90deg, var(--accent) 0 28%, #ffffff 28% 38%, var(--primary) 38% 68%, #ffffff 68% 78%, var(--accent) 78% 100%);
}

.umbrella-family::before {
  width: 220px;
  height: 108px;
  background:
    linear-gradient(90deg, var(--primary-dark) 0 22%, #ffffff 22% 32%, var(--accent) 32% 58%, #ffffff 58% 68%, var(--primary) 68% 100%);
}

.all-departments-heading {
  margin-top: 12px;
}

.catalog-section {
  padding-top: 40px;
}

.catalog-category {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.catalog-category:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.catalog-color {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(135deg, var(--primary), var(--accent));
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.department-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.department-tag {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--primary-dark);
  background: #fff6d8;
  border: 1px solid rgba(246, 181, 31, 0.5);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.department-card h2 {
  margin-top: 14px;
  font-size: 1.8rem;
}

.department-card p {
  color: var(--muted);
}

.department-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 900;
}

.price {
  display: block;
  margin-top: 18px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
}

.promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 34px;
  margin-top: 36px;
  margin-bottom: 36px;
  background:
    radial-gradient(circle at right, rgba(246, 181, 31, 0.22), transparent 28%),
    #ffffff;
}

.promo div {
  max-width: 700px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
  border-radius: 30px;
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(0, 159, 198, 0.18);
  border-color: var(--primary);
}

.footer {
  padding: 28px 24px 44px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 820px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(0, 159, 198, 0.12), transparent 32%),
      linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #ffffff 100%);
  }

  .nav,
  .nav-links,
  .hero-actions,
  .promo {
    align-items: flex-start;
  }

  .nav,
  .hero,
  .info-strip,
  .features,
  .category-grid,
  .product-grid,
  .sea-products,
  .department-grid,
  .product-detail,
  .cart-item,
  .contact-grid,
  .promo {
    grid-template-columns: 1fr;
  }

  .nav,
  .promo {
    flex-direction: column;
  }

  .site-header {
    position: static;
  }

  .nav {
    gap: 14px;
    padding: 14px 16px;
  }

  .nav-links {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 13px;
    background: #fff;
    font-size: 0.92rem;
  }

  .hero,
  .page-hero,
  .section,
  .features,
  .info-strip,
  .categories,
  .promo,
  .product-detail {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .page-hero {
    padding-top: 34px;
    padding-bottom: 18px;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.05rem);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    letter-spacing: -0.04em;
  }

  .page-hero p,
  .section-intro,
  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .detail-actions,
  .cart-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .sea-products {
    gap: 16px;
    margin-bottom: 34px;
  }

  .sea-product-card,
  .product-detail-media,
  .product-detail-copy,
  .cart-section,
  .promo {
    border-radius: 24px;
  }

  .sea-product-card {
    padding: 12px;
    box-shadow: 0 14px 34px rgba(7, 55, 109, 0.1);
  }

  .sea-product-card h3 {
    margin-top: 14px;
    font-size: 1.18rem;
    line-height: 1.25;
  }

  .sea-product-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
  }

  .product-photo {
    height: 190px;
    border-radius: 18px;
  }

  .product-highlights,
  .available-colors {
    margin: 14px 0 10px;
    padding: 12px;
    border-radius: 16px;
  }

  .available-colors img {
    max-height: 130px;
  }

  .card-cta {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    border-radius: 999px;
    padding: 10px 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  }

  .catalog-section {
    padding-top: 18px;
  }

  .catalog-category {
    margin-top: 26px;
    padding-top: 22px;
  }

  .catalog-category .section-heading {
    margin-bottom: 16px;
  }

  .product-detail-copy {
    padding: 22px;
  }

  .detail-photo {
    border-radius: 20px;
  }

  .product-detail-media {
    padding: 12px;
  }

  .product-detail-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .product-points {
    gap: 8px;
    margin: 20px 0;
    padding-left: 18px;
    font-size: 0.96rem;
  }

  .color-picker {
    padding: 12px;
    border-radius: 18px;
  }

  .color-picker label {
    border-radius: 18px;
    padding: 11px 12px;
  }

  .product-highlights span {
    font-size: 0.86rem;
  }

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

  .product-detail {
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .color-picker {
    grid-template-columns: 1fr;
  }

  .cart-item img {
    width: 100%;
    height: 170px;
  }

  .cart-item {
    gap: 12px;
    padding: 12px;
  }

  .cart-item button {
    width: 100%;
  }

  .promo {
    padding-top: 28px;
    padding-bottom: 28px;
    margin-top: 20px;
    margin-bottom: 24px;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 1.2rem;
  }

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

  .nav-links a {
    font-size: 0.86rem;
    padding: 8px 11px;
  }

  .hero,
  .page-hero,
  .section,
  .features,
  .info-strip,
  .categories,
  .promo,
  .product-detail {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-hero {
    padding-top: 26px;
  }

  h1 {
    font-size: clamp(2rem, 13vw, 2.75rem);
  }

  .product-photo {
    height: 172px;
  }

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

  .product-highlights span {
    padding: 6px 9px;
  }
}
