@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Source+Sans+3:wght@300;400;500&display=swap");

:root {
  --navy: #0e2557;
  --navy-dark: #091a3c;
  --ivory: #f4f2de;
  --light-gray: #e7e4cf;
  --text-main: #1f1f24;
  --text-muted: #4c4c59;
  --accent: #12306d;
  --button-hover: #0d2150;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Tahoma, sans-serif;
  background-color: var(--ivory);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

header {
  background-color: var(--navy);
  color: #ffffff;
  padding: 0rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  letter-spacing: 0.18rem;
  display: flex;
  align-items: center;
}

.brand img {
  filter: brightness(0) invert(1);
  height: 9.5rem;
  width: auto;
  display: block;
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: clamp(1.5rem, 2vw, 3rem);
  margin: 0;
  padding: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

nav a {
  position: relative;
  padding-bottom: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.2s ease-in-out;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-in-out;
}

nav a.active::after,
nav a:hover::after {
  transform: scaleX(1);
}

nav a i {
  font-size: 1.1rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

nav a:hover i,
nav a.active i {
  transform: translateY(-2px) scale(1.08);
  color: #ffffff;
}

.nav-toggle {
  background: transparent;
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  transition: background-color 0.3s ease-in-out;
  position: relative;
}

.nav-toggle:hover,
.nav-toggle:focus {
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
}

.nav-toggle__line {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.nav-toggle.is-active .nav-toggle__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active .nav-toggle__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

main {
  flex: 1 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 6rem);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__visual {
  position: relative;
}

.hero__logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a8e6cf;
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 18px 36px rgba(9, 26, 60, 0.18);
  animation: heroFloat 14s ease-in-out infinite;
  min-height: 300px;
}

.hero__logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: brightness(0) opacity(0.6);
}

.hero__visual picture {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(9, 26, 60, 0.18);
  animation: heroFloat 14s ease-in-out infinite;
}

.hero__badge {
  position: absolute;
  bottom: clamp(1rem, 4vw, 2rem);
  left: clamp(1rem, 4vw, 2rem);
  background-color: rgba(14, 37, 87, 0.85);
  color: #ffffff;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  backdrop-filter: blur(3px);
  animation: badgePulse 3.2s ease-in-out infinite;
}

.hero__content {
  display: grid;
  gap: 1.75rem;
}

.hero__tagline {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero__description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  min-height: 3.2rem;
}

[data-hero-rotator] {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
}

[data-hero-phrase] {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

[data-hero-phrase].is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.primary-button {
  background-color: var(--accent);
  border: none;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.75rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  border-radius: 4px;
}

.primary-button span {
  display: inline-flex;
  align-items: center;
}

.primary-button:hover {
  background-color: var(--button-hover);
  transform: translateY(-2px);
}

.secondary-link {
  font-size: 0.95rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.6rem;
  border-radius: 4px;
  border: 1px solid rgba(18, 48, 109, 0.35);
  color: var(--accent);
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.secondary-link::after {
  content: ">";
  font-size: 1rem;
  transition: transform 0.2s ease-in-out;
}

.secondary-link:hover {
  background-color: rgba(18, 48, 109, 0.08);
  color: var(--navy);
}

.secondary-link:hover::after {
  transform: translateX(3px);
}

.primary-button i,
.secondary-link i,
.newsletter__label i {
  margin-right: 0.4rem;
  font-size: 1.1rem;
}

.hero-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.hero-highlights li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0;
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  animation: highlightReveal 0.8s ease forwards;
}

.highlight-icon {
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  animation: iconPulse 3.6s ease-in-out infinite;
}

.highlight-copy {
  display: grid;
  gap: 0.3rem;
}

.highlight-title {
  font-weight: 600;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.highlight-description {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-highlights li:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-highlights li:nth-child(2) {
  animation-delay: 0.25s;
}
.hero-highlights li:nth-child(3) {
  animation-delay: 0.4s;
}

.trust-band {
  margin-top: clamp(2.5rem, 4vw, 4rem);
  background: linear-gradient(135deg, rgba(18, 48, 109, 0.1), rgba(14, 37, 87, 0.05));
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.75rem;
}

.trust-band__item {
  display: grid;
  gap: 0.35rem;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  animation: trustReveal 0.85s ease forwards;
}

.trust-band__label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18rem;
  color: var(--accent);
}

.trust-band__value {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
}

.trust-icon {
  font-size: 1.6rem;
  color: var(--accent);
}

.trust-band__item:nth-child(1) {
  animation-delay: 0.1s;
}
.trust-band__item:nth-child(2) {
  animation-delay: 0.22s;
}
.trust-band__item:nth-child(3) {
  animation-delay: 0.34s;
}
.trust-band__item:nth-child(4) {
  animation-delay: 0.46s;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22rem;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0;
}

.testimonials {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.testimonials__heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  color: var(--text-muted);
}

.testimonials__heading .section-title {
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.testimonials__carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.testimonials__control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(18, 48, 109, 0.3);
  background-color: transparent;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
}

.testimonials__control:hover,
.testimonials__control:focus-visible {
  background-color: rgba(18, 48, 109, 0.08);
  border-color: rgba(18, 48, 109, 0.5);
  outline: none;
  transform: translateY(-2px) scale(1.04);
}

.testimonials__viewport {
  position: relative;
  min-height: 220px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 18px 36px rgba(9, 26, 60, 0.12);
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.testimonial-card.is-active {
  display: grid;
  gap: 1.5rem;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
}

.testimonial-card__name {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.testimonial-card__meta {
  margin: 0.3rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonials__status {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: var(--accent);
}

.newsletter__content .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.2rem;
}

.newsletter {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, rgba(18, 48, 109, 0.12), rgba(14, 37, 87, 0.08));
  border-radius: 18px;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: center;
}

.newsletter__content {
  display: grid;
  gap: 0.9rem;
  color: var(--text-muted);
}

.newsletter__content .section-title {
  margin: 0;
  color: var(--text-main);
}

.newsletter__form {
  display: grid;
  gap: 1rem;
}

.newsletter__label {
  font-size: 0.85rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: var(--text-main);
  font-weight: 600;
}

.newsletter__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter__controls input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(18, 48, 109, 0.2);
  font-size: 0.95rem;
  background-color: #ffffff;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.newsletter__controls input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(18, 48, 109, 0.12);
  outline: none;
}

.newsletter__feedback {
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--accent);
}

.newsletter__feedback[data-state="error"] {
  color: #b7322c;
}

.newsletter__hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 2rem;
  letter-spacing: 0.12rem;
}

.product-intro {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  color: var(--text-muted);
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-button {
  border: 1px solid rgba(18, 48, 109, 0.35);
  background-color: transparent;
  color: var(--accent);
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.filter-button i {
  font-size: 1rem;
}

.filter-button:hover {
  background-color: rgba(18, 48, 109, 0.1);
  transform: translateY(-1px);
}

.filter-button.is-active {
  background-color: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 8px 18px rgba(18, 48, 109, 0.2);
}

.products-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.products-empty {
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px dashed rgba(18, 48, 109, 0.18);
  background-color: rgba(255, 255, 255, 0.6);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(240px, 1fr);
  gap: 1.5rem;
  align-items: start;
  background-color: rgba(255, 255, 255, 0.7);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(9, 26, 60, 0.08);
  opacity: 0;
  transform: translateY(18px);
  animation: cardReveal 0.8s ease forwards;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(9, 26, 60, 0.16);
}

.products-grid .product-card:nth-child(1) {
  animation-delay: 0.12s;
}
.products-grid .product-card:nth-child(2) {
  animation-delay: 0.22s;
}
.products-grid .product-card:nth-child(3) {
  animation-delay: 0.32s;
}

.product-card.is-hidden {
  display: none;
}

.product-card__image {
  overflow: hidden;
  border-radius: 12px;
}

.product-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-card__description {
  color: var(--text-muted);
  line-height: 1.6;
}

.product-card__notes {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.about-text {
  line-height: 1.7;
  color: var(--text-muted);
  font-size: 1rem;
  display: grid;
  gap: 1.2rem;
}

.contact-card {
  margin-top: 3rem;
  background-color: rgba(255, 255, 255, 0.75);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: 14px;
  display: grid;
  gap: 1.5rem;
  box-shadow: 0 12px 32px rgba(9, 26, 60, 0.08);
}

.contact-card form {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row label {
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: var(--text-main);
  font-weight: 600;
}

.form-row input,
.form-row textarea,
.form-row select {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--light-gray);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: #ffffff;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-row select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 21px) calc(1rem + 1px),
    calc(100% - 14px) calc(1rem + 1px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(18, 48, 109, 0.15);
  outline: none;
}

.form-row.has-error input,
.form-row.has-error textarea,
.form-row.has-error select {
  border-color: #b7322c;
  box-shadow: 0 0 0 3px rgba(183, 50, 44, 0.18);
}

.form-row [data-error] {
  display: none;
  color: #b7322c;
  font-size: 0.8rem;
}

.form-row.has-error [data-error] {
  display: block;
}

.primary-button.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.75;
}

.primary-button.is-loading::after {
  content: "";
  border-radius: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: #ffffff;
  animation: spin 0.7s linear infinite;
  position: absolute;
  right: clamp(1rem, 3vw, 1.5rem);
  top: calc(50% - 8px);
}

.contact-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-feedback {
  font-size: 0.95rem;
  color: var(--accent);
  min-height: 1.25rem;
}

.form-feedback[data-state="error"] {
  color: #b7322c;
}

.form-feedback[data-state="success"] {
  color: var(--accent);
}

footer {
  background-color: #ffffff;
  margin-top: auto;
  padding: 2rem clamp(1.5rem, 5vw, 6rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--light-gray);
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.12rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-social__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes heroFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.01);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
}

@keyframes highlightReveal {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trustReveal {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes cardReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  header {
    position: sticky;
  }

  nav {
    position: absolute;
    inset: 100% 0 auto 0;
    display: block;
    background-color: var(--navy);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 12px 32px rgba(9, 26, 60, 0.16);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding-bottom: clamp(1rem, 4vw, 2rem);
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.25rem, 4vw, 2rem) clamp(1.25rem, 5vw, 3rem);
  }

  nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card {
    transition: none;
  }

  .testimonial-card.is-active {
    transition: none;
  }

  .hero__visual picture,
  .hero__badge,
  .hero-highlights li,
  .trust-band__item,
  .product-card {
    animation: none !important;
  }
}

@media (max-width: 720px) {
  main {
    padding: clamp(1.5rem, 6vw, 2.5rem);
  }

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

  .hero__description {
    min-height: auto;
  }

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

  .testimonials__carousel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonials__control {
    width: 40px;
    height: 40px;
    justify-self: center;
  }

  .testimonials__viewport {
    min-height: 240px;
  }

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

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

  .newsletter__controls input {
    width: 100%;
  }

  .product-filters {
    gap: 0.6rem;
  }

  .filter-button {
    flex: 1 0 calc(50% - 0.6rem);
    text-align: center;
  }

  footer {
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
