:root {
  --teal: #197373;
  --teal-soft: #7991a4;
  --wine: #72122e;
  --navy: #0d293d;
  --bg: #eef3f6;
  --text: #0d293d;
  --muted: #5f7385;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}


body.no-scroll {
  overflow: hidden;
}

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

.is-hidden {
  display: none !important;
}


.page {
  padding: 32px 48px 48px;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(25, 115, 115, 0.1), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(114, 18, 46, 0.1), transparent 32%),
    linear-gradient(180deg, #f6f8fb 0%, #eef3f6 40%, #f9fbfd 100%);
  z-index: -1;
}

.mobile-controls {
  display: none;
}

.main-header {
  margin-top: 12px;
  background: #fff;
  padding: 18px;
  border-radius: 30px;
  box-shadow: 0 22px 44px rgba(24, 80, 101, 0.14);
  margin-bottom: 32px;
  border: 1px solid #eef4f4;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 30;
}

.header__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand actions"
    "search search";
  align-items: center;
  gap: 12px;
}

.main-nav {
  display: none;
  grid-area: nav;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  outline: none;
  color: var(--teal);
  border-color: var(--teal);
}

.header-utilities {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.help-link {
  grid-area: help;
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-decoration: none;
}

.menu-toggle {
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f4f8fa, #edf3f5);
  border: 1px solid #dce8ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle__line {
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: #87a0b0;
}

.mobile-nav {
  display: none;
}

.help-link.is-active {
  color: var(--teal);
}

.help-link:hover,
.help-link:focus-visible {
  outline: none;
  color: var(--teal);
}

.header__search {
  grid-area: search;
  width: 100%;
}

.header-mobile-actions {
  display: contents;
}

.hero-offer {
  position: fixed;
  left: 0;
  top: 140px;
  z-index: 4;
  background: #2f3135;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: flex-start;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  animation: hero-offer-pulse 2.2s ease-in-out infinite;
}

.hero-offer.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.hero-offer__close {
  position: absolute;
  right: -6px;
  top: -6px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: #ececec;
  color: #2f3135;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-offer__link {
  color: #fff;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 14px 8px;
  min-height: 160px;
  font-size: 26px;
  letter-spacing: 0.01em;
  font-weight: 500;
  font-family: inherit;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1;
}

.hero-offer__link:hover,
.hero-offer__link:focus-visible {
  outline: none;
  opacity: 0.92;
}

.hero-offer-modal[hidden] {
  display: none;
}

.hero-offer-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 30px;
}

.hero-offer-modal__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(18, 24, 35, 0.64);
}

.hero-offer-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(92vh, 860px);
  overflow: hidden;
  border-radius: 28px;
  background: #f8f5ef;
  border: 1px solid #ece6dd;
  box-shadow: 0 30px 80px rgba(12, 16, 22, 0.35);
}

.hero-offer-modal__dismiss {
  position: absolute;
  top: 22px;
  right: 24px;
  border: none;
  background: transparent;
  color: #8d939b;
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.hero-offer-modal__content {
  display: grid;
  grid-template-columns: minmax(350px, 42%) minmax(0, 58%);
  min-height: min(84vh, 760px);
  max-height: min(84vh, 760px);
  min-height: 0;
}

.hero-offer-modal__brand-column {
  background: linear-gradient(180deg, #f7f2eb 0%, #efe5da 100%);
  border-right: 1px solid #e9e2d9;
}

.hero-offer-modal__logo {
  width: clamp(120px, 18vw, 200px);
  margin: 0 0 28px 44px;
}

.hero-offer-modal__image-wrap {
  position: relative;
  margin: 0;
  overflow: hidden;
  height: 100vh;
}

.hero-offer-modal__image {
  width: 100%;
  height: 100%;
}

.hero-offer-modal__badge {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: clamp(140px, 20vw, 190px);
  border-radius: 999px;
  background: rgba(253, 245, 233, 0.96);
  text-align: center;
  padding: 18px 18px 16px;
  display: grid;
  gap: 6px;
  color: #1f2833;
  box-shadow: 0 14px 28px rgba(26, 31, 40, 0.18);
}

.hero-offer-modal__badge-icon {
  font-size: 26px;
  line-height: 1;
}

.hero-offer-modal__badge strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.hero-offer-modal__badge span:last-child {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-offer-modal__benefits {
  margin: 0;
  padding: 28px 24px 4px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
}

.hero-offer-modal__benefits li {
  display: grid;
  gap: 8px;
  justify-items: center;
  color: #2a3240;
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-offer-modal__benefits span {
  font-size: 34px;
  color: #67707d;
}

.hero-offer-modal__form-column {
max-height: 100%;
background-color: #fdfdfd;
}

.img_hero-offer-modal__headline_desktop {
  height: 25vh;
  width: 45%;
}

.img_hero-offer-modal__headline_mobile {
  height: 25vh;
  width: 70%;
  display: none; 
}

.hero-offer-modal__form_offc {
  width: 100%;
}

.hero-offer-modal__headline {
  margin: 0;
  position: relative;
  display: block ruby;
}

.hero-offer-modal__headline h2 {
  margin-top: 15;
  margin-bottom: 6%;
  color: #181c26;
  font-family: "Playfair Display", serif;
  font-size: 8vh;
  margin-left: 6%;
  margin-right: 6%;
}

.hero-offer-modal__mobile-logo {
  display: none;
}

.hero-offer-modal__accent-heart {
  color: #c04f4f;
}

.hero-offer-modal__accent-paw {
  color: #197373;
}

.hero-offer-modal__headline-icon {
  display: none;
}

.hero-offer-modal__offer {
  margin-top: -4px;
}

.hero-offer-modal__offer-title {
  margin: 0;
  color: #0f5f69;
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 1.7vw, 34px);
  line-height: 1.1;
  font-weight: 800;
}

.hero-offer-modal__description {
  margin: 0;
  color: #66707f;
  font-size: clamp(16px, 1.1vw, 21px);
  line-height: 1.32;
}


.hero-offer-modal__field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid #d8dde2;
  border-radius: 15px;
  min-height: 35px;
  padding: 0 18px;
  color: #6d7481;
  background: #fff;
    margin-top: 2%;
  margin-left: 10%;
  margin-right: 10%;
  height: 11%;
}

.hero-offer-modal__checks {
  margin-top: 2%;
    margin-left: 7%;
  margin-right: 10%;
  display: grid;
}

.hero-offer-modal__field span {
  font-size: 24px;
  line-height: 1;
}

.hero-offer-modal__field input,
.hero-offer-modal__field select {
  border: none;
  width: 100%;
  font-size: 16px;
  background: transparent;
}

.hero-offer-modal__field input:focus,
.hero-offer-modal__field select:focus {
  outline: none;
     
}

.hero-offer-modal__field {
  margin-top: 1%;
}

.hero-offer-modal__form_off {
  background-color: #fefefe;
  height: 55vh;
}


.hero-offer-modal__checks input[type="checkbox"] {
  margin-top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  accent-color: #0f5f69;
}

.hero-offer-modal__checks a,
.hero-offer-modal__legal-links a {
  color: #1c5560;
  text-underline-offset: 2px;
}

.hero-offer-modal__legal-links {
  margin-top: 2%;
  color: #6e7581;
  font-size: clamp(14px, 0.95vw, 16px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hero-offer-modal__cta {
  margin-top: 2px;
  border: none;
  border-radius: 14px;
  background: #045764;
  color: #fff;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3%;
}

.hero-offer-modal__no-thanks {
  border: none;
  background: transparent;
  color: #79818e;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  font-size: 16px;
  justify-self: center;
}

.hero-offer-modal__content small {
  margin: 0;
  text-align: center;
  color: #717a87;
  font-size: 13px;
  line-height: 1.35;
}

@media (min-width: 769px) and (max-height: 900px) {
  .hero-offer-modal__dialog {
    max-height: 96vh;
  }

  .hero-offer-modal__content {
    min-height: min(92vh, 700px);
  }
}

body.is-modal-open {
  overflow: hidden;
}

.session-warning-modal[hidden] {
  display: none;
}

.session-warning-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.session-warning-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.55);
}

.session-warning-modal__dialog {
  position: relative;
  width: min(480px, 100%);
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.3);
}

.session-warning-modal__dialog h2 {
  margin: 0 0 0.75rem;
  color: #1f6b6b;
}

.session-warning-modal__dialog p {
  margin: 0;
  color: #1f2937;
  line-height: 1.5;
}

.session-warning-modal__actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.session-warning-modal__actions .btn {
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #1f6b6b;
  cursor: pointer;
}

.session-warning-modal__actions .btn--outline {
  background: #ffffff;
  color: #1f6b6b;
}

.session-warning-modal__actions .btn--primary {
  background: #1f6b6b;
  color: #ffffff;
}

@keyframes hero-offer-orbit {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(calc(100vw - 180px), 0);
  }
  50% {
    transform: translate(calc(100vw - 180px), calc(100vh - 120px));
  }
  75% {
    transform: translate(0, calc(100vh - 120px));
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes hero-offer-pulse {
  0%,
  100% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0 8px 26px rgba(17, 86, 120, 0.52);
  }
}

.hero {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 50px 80px rgba(13, 41, 61, 0.2);
  margin-bottom: 48px;
}

.hero__slider {
  position: relative;
  width: 100%;
  display: grid;
  min-height: 420px;
  touch-action: pan-y;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-image) center/cover no-repeat;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.hero__slide.is-active {
  opacity: 1;
  position: relative;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(180deg, rgba(13, 41, 61, 0.4), rgba(13, 41, 61, 0.52));*/
}

.hero__mobile-link {
  display: none;
}

.hero__content {
  position: relative;
  color: #fff;
  max-width: 720px;
  padding: 48px;
  display: grid;
  gap: 12px;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  letter-spacing: 0.05em;
}

.hero__subtitle {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  opacity: 0.92;
}

.cta {
  justify-self: center;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(13, 41, 61, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta:hover,
.cta:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(13, 41, 61, 0.32);
}

.eyebrow {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
  font-size: 12px;
  opacity: 0.8;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 10px;
  z-index: 2;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero__dot.is-active {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
}

.categories {
  margin: 20px 0 56px;
}

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

.categories h2 {
  margin: 0;
  color: #113c46;
  font-size: clamp(40px, 4.7vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.categories-heading__line {
  display: inline-block;
  width: 96px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: #1b4f59;
}

.category-carousel {
  overflow: hidden;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: clamp(20px, 2vw, 34px);
}

.category-card {
  background: transparent;
  border-radius: 0;
  padding: 0 0 8px;
  display: grid;
  gap: 20px;
  border: 0;
  box-shadow: none;
  transition: transform 0.28s ease;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-media {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 2px solid #d9dee2;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), rgba(241, 238, 236, 0.92) 66%);
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.category-card:hover .category-media img {
  transform: scale(1.05);
}

.category-media--placeholder {
  display: grid;
  place-items: center;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 53, 62, 0), rgba(16, 53, 62, 0.1));
  opacity: 0.3;
  transition: opacity 0.25s ease;
}

.category-card:hover .category-overlay {
  opacity: 0.46;
}

.category-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.category-label {
  margin: 0;
  color: #123e49;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(38px, 2.8vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #173f49;
  font-size: 16px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 2px solid #d5dde1;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.category-chip__arrow {
  font-size: 36px;
  line-height: 0.5;
  font-weight: 400;
}

.category-chip__text {
  line-height: 1;
}

.category-card:hover .category-label,
.category-card:focus-visible .category-label {
  color: #0f3741;
}

.category-card:hover .category-chip,
.category-card:focus-visible .category-chip {
  color: #0f3741;
  border-color: #95aab1;
}

@media (min-width: 1024px) {
  .main-header {
    padding: 18px 24px;
  }

  .header__grid {
    grid-template-columns: auto auto 1fr auto auto;
    grid-template-areas: "brand nav search help actions";
    gap: 20px;
    align-items: center;
  }

  .main-nav {
    display: flex;
  }

  .help-link {
    justify-self: start;
    font-size: 14px;
    color: var(--text);
  }

  .header__search {
    width: min(100%, 420px);
    justify-self: center;
  }

  .header-utilities {
    gap: 14px;
  }

  .menu-toggle {
    display: none;
  }

}


.featured {
  margin-bottom: 56px;
  display: grid;
  gap: 20px;
}

.section-heading h2 {
  margin: 0 0 4px;
  font-size: 26px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(15, 40, 40, 0.08);
  border: 1px solid #f0f4f4;
}

.featured-image {
  display: block;
  position: relative;
  min-height: 240px;
  text-decoration: none;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-name {
  color: inherit;
  text-decoration: none;
}

.featured-name:focus-visible,
.featured-image:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 6px;
  border-radius: 18px;
}

.featured-body {
  padding: 24px;
  display: grid;
  gap: 12px;
  align-content: center;
}

.featured-meta {
  display: grid;
  gap: 6px;
}

.featured-meta__label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7b8b8b;
  font-weight: 700;
}

.featured-meta__value {
  margin: 0;
  font-size: 13px;
  font-style: italic;
  color: #244949;
}

.featured-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.featured-size-chip {
  border: 1px solid #dbe5e5;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #4c5f5f;
  background: #f7fafb;
}

.add-btn--wide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.logo {
  grid-area: brand;
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-image {
  width: clamp(90px, 8vw, 120px);
  max-height: 64px;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-tag {
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--muted);
}

.search {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f8fbfb;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid transparent;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 12px 30px rgba(31, 107, 107, 0.08);
}

.search:focus-within {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 16px 36px rgba(31, 107, 107, 0.12);
}

.search input {
  border: none;
  background: transparent;
  flex: 1;
  padding: 16px 8px;
  font-size: 15px;
  color: #4b5757;
}

.search input:focus {
  outline: none;
}

.search .icon {
  font-size: 18px;
  margin-right: 10px;
}

.header__search-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--teal);
  font-size: 20px;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.cart {
  position: relative;
  border: none;
  background: linear-gradient(135deg, #f6fbfb, #eef6f6);
  border: 1px solid #e5efef;
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 18px;
  cursor: pointer;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 52px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 24px rgba(20, 60, 60, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cart:hover,
.cart:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(31, 107, 107, 0.16);
  background: linear-gradient(135deg, #f2fafa, #e8f3f3);
  border-color: #d7e7e7;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: #72122e;
  color: #ffffff;
  border-radius: 999px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.profile {
  position: relative;
  border: none;
  background: #eef6f6;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--teal);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}


.profile-avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.profile:hover,
.profile:focus-visible {
  outline: none;
  box-shadow: 0 8px 16px rgba(31, 107, 107, 0.15);
  transform: translateY(-1px);
}

.profile-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-notification-count,
.notification-menu-count {
  background: #72122e;
  color: #ffffff;
  border-radius: 999px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.profile-notification-count {
  position: absolute;
  top: -5px;
  right: -6px;
}

.notification-menu-count {
  margin-left: auto;
}

.profile-notification-count.is-hidden,
.notification-menu-count.is-hidden {
  display: none;
}

.user-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: none;
  z-index: 50;
}

.user-menu.is-open {
  display: block;
}

.user-menu__dropdown {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 30, 30, 0.12);
  border: 1px solid #eef4f4;
  min-width: 280px;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.user-menu__headline {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--text);
}

.user-menu__headline-link {
  text-decoration: none;
  display: inline-flex;
  width: fit-content;
}

.user-menu__headline-link:hover,
.user-menu__headline-link:focus-visible {
  color: var(--primary);
}

.user-menu__name {
  margin-top: -8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  width: fit-content;
}

.user-menu__name:hover,
.user-menu__name:focus-visible {
  color: var(--primary);
}

.user-menu__section {
  display: grid;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid #eef1f1;
}

.user-menu__section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.user-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.user-menu__item:hover,
.user-menu__item:focus-visible {
  outline: none;
  background: #f7f7f7;
  transform: translateX(2px);
}

.user-menu__item--danger {
  color: #c7343a;
}

.user-menu__backdrop {
  display: none;
}

.user-menu__panel {
  display: none;
}

.user-menu__panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 10px;
  border-bottom: 1px solid #eef1f1;
}

.user-menu__panel-info {
  display: grid;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.user-menu__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9f5f5, #f6fbfb);
  display: grid;
  place-items: center;
  font-size: 22px;
  overflow: hidden;
}

.user-menu__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.user-menu__panel-title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
}

.user-menu__panel-subtitle {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.user-menu__panel-close {
  margin-left: auto;
  border: none;
  background: #f3f8f8;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  font-size: 18px;
  color: var(--teal);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

.filters-panel {
  background: #fff;
  border-radius: 32px;
  padding: 32px 28px;
  box-shadow: 0 30px 60px rgba(16, 50, 50, 0.08);
  align-self: start;
  position: relative;
}

.filters-apply {
  display: none;
}

.filters-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #eef6f6;
  color: var(--teal);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 12px;
  box-shadow: 0 10px 25px rgba(16, 50, 50, 0.08);
}

.filters-overlay {
  display: none;
}


.filters-panel__top {
  margin-bottom: 14px;
}

.filters-panel__eyebrow {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7f7f;
}

.filters-panel__heading {
  margin: 6px 0 0;
  font-size: 28px;
  color: var(--teal);
}

.filters-feedback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f4faf9;
}

.filters-feedback__results {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #1f5757;
}

.filters-feedback__clear {
  border: none;
  background: transparent;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.active-filters:not([hidden]) {
  margin-bottom: 18px;
}

.active-filter-chip {
  border: 1px solid #d7e8e6;
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #365858;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.filters-group + .filters-group {
  margin-top: 32px;
  border-top: 1px solid #eef1f1;
  padding-top: 32px;
}

.div_hero-offer-modal__no-thanks {
  display: grid;
  margin-top: 2%;
  gap: 11px;
}

.filters-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
}

.filters-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
}

.checkbox-item input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-btn {
  border: 1px solid #e3e8e8;
  background: #f8fbfb;
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 600;
  color: #506060;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.size-btn[aria-pressed="true"] {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.color-picker,
.color-choices {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.color-dot[aria-pressed="true"] {
  transform: scale(1.08);
  border-color: #153f3f !important;
  box-shadow: 0 0 0 3px rgba(29, 109, 109, 0.2);
}

.switch {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.switch input {
  display: none;
}

.slider {
  position: relative;
  width: 46px;
  height: 24px;
  background: #dfe6e6;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.slider::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.switch input:checked + .slider {
  background: var(--teal);
}

.switch input:checked + .slider::after {
  transform: translateX(22px);
}

.catalog {
  background: transparent;
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.catalog-header h1 {
  margin: 0;
  font-size: 32px;
}

.subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.sort {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  padding: 10px 16px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(31, 107, 107, 0.08);
}

.sort select {
  border: none;
  font-weight: 600;
  color: var(--teal);
  background: transparent;
}

.sort select:focus {
  outline: none;
}

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

.product-card {
  background: #fff;
  border-radius: 32px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: 0 30px 60px rgba(16, 50, 50, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 32px;
}

.product-card .add-btn,
.product-card .quick-btn,
.product-card .color-dot {
  position: relative;
  z-index: 2;
}

.product-card .favorite-btn {
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px rgba(16, 50, 50, 0.12);
}

.card-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #f6f9f9;
}

.card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.badge.discount {
  background: #efc347;
  color: #5a3d00;
  box-shadow: 0 8px 16px rgba(90, 61, 0, 0.2);
}

.badge.new {
  background: var(--teal);
  color: #fff;
  top: 54px;
}

.favorite-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.favorite-btn svg {
  width: 22px;
  fill: none;
  stroke: #f04452;
  stroke-width: 1.8px;
}

.favorite-btn:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 16px 26px rgba(240, 68, 82, 0.26);
}

.favorite-btn:focus-visible {
  outline: 3px solid rgba(240, 68, 82, 0.35);
  outline-offset: 2px;
}

.favorite-btn.is-active {
  background: #ffecef;
  box-shadow: 0 12px 26px rgba(255, 90, 95, 0.25);
}

.favorite-btn.is-active svg {
  fill: #ff5a5f;
  stroke: #ff5a5f;
}

.favorite-btn__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-name {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
}

.prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.prices .current {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
}

.prices .old {
  font-size: 15px;
  color: var(--muted);
  text-decoration: line-through;
}

.card-actions {
  display: flex;
  gap: 12px;
}

.add-btn {
  flex: 1;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(31, 107, 107, 0.25);
}

.quick-btn {
  width: 48px;
  border: none;
  border-radius: 16px;
  background: #f1f6f6;
  cursor: pointer;
  font-size: 20px;
}

.mobile-filters {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s ease;
  z-index: 1000;
}

.mobile-filters.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-filters__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.mobile-filters__panel {
  position: relative;
  width: min(420px, 80vw);
  max-width: 480px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.mobile-filters.is-open .mobile-filters__panel {
  transform: translateX(0);
}

.mobile-filters__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.mobile-filters__header p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.mobile-filters__back {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: var(--teal);
}

.mobile-filters__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-filters__group + .mobile-filters__group {
  border-top: 1px solid #f0f2f2;
  padding-top: 24px;
}

.mobile-filters__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
}

.mobile-filters__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-size-chip {
  border: 1px solid #dfe4e4;
  border-radius: 999px;
  padding: 10px 18px;
  background: #fff;
  font-weight: 600;
  color: #516060;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-size-chip.is-selected {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 10px 25px rgba(31, 107, 107, 0.25);
}

.mobile-color-picker {
  display: flex;
  gap: 14px;
}

.mobile-color-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border 0.2s ease;
}

.mobile-color-dot.is-selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 107, 107, 0.15);
}

.mobile-filters__footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid #e5e5e5;
  background: #fff;
  position: sticky;
  bottom: 0;
}

.mobile-filters__clear {
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 14px 16px;
  font-weight: 600;
  background: #fff;
  color: var(--teal);
  cursor: pointer;
}

.mobile-filters__apply {
  border: none;
  border-radius: 999px;
  padding: 14px 16px;
  font-weight: 600;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(31, 107, 107, 0.28);
}

.mobile-sort {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s ease;
  z-index: 1100;
}

.mobile-sort.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sort__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.mobile-sort__panel {
  position: relative;
  width: min(480px, 100%);
  margin: 0 14px 12px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  transform: translateY(14px);
  transition: transform 0.24s ease;
}

.mobile-sort.is-open .mobile-sort__panel {
  transform: translateY(0);
}

.mobile-sort__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 12px;
  border-bottom: 1px solid #eef1f1;
}

.mobile-sort__header p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
}

.mobile-sort__close {
  border: none;
  background: #f3f8f8;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  font-size: 18px;
  color: var(--teal);
  cursor: pointer;
}

.mobile-sort__options {
  display: grid;
  gap: 8px;
  padding: 12px 16px 18px;
}

.mobile-sort__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e7eded;
  background: #f9fbfb;
  cursor: pointer;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mobile-sort__option.is-selected {
  border-color: var(--teal);
  background: #eef6f6;
  box-shadow: 0 8px 20px rgba(31, 107, 107, 0.1);
}

.mobile-sort__option input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.mobile-sort__label {
  font-weight: 600;
  color: #334041;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1200;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer__backdrop {
  flex: 1;
  background: rgba(10, 31, 31, 0.4);
  backdrop-filter: blur(1px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer__panel {
  width: 420px;
  max-width: 100%;
  background: #fff;
  border-radius: 32px 0 0 32px;
  box-shadow: -20px 0 60px rgba(15, 41, 41, 0.2);
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #eef1f1;
  padding-bottom: 18px;
  background: #fff;
  z-index: 2;
}

.cart-drawer__back {
  border: none;
  background: #f2f8f8;
  color: var(--teal);
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.cart-drawer__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
}

.cart-drawer__count {
  font-size: 13px;
  color: var(--muted);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 6px 18px 0;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.cart-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 20px;
  background: #f8fbfb;
  border: 1px solid #e5eded;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.cart-item__media img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 18px;
}

.cart-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item__top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.cart-item__name {
  margin: 0;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item__price {
  margin: 0;
  font-weight: 700;
  color: var(--teal);
}

.cart-item__meta {
  margin: 4px 0 8px;
  font-size: 13px;
  color: var(--muted);
}

.cart-item__swatches {
  display: flex;
  gap: 6px;
}

.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--swatch-color, #d9d9d9);
  border: 2px solid transparent;
}

.swatch.is-selected {
  border-color: var(--teal);
}

.cart-item__controls {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item__qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d8e4e4;
  border-radius: 999px;
  padding: 6px 12px;
  background: #fff;
}

.cart-item__qty-controls button {
  border: none;
  background: #f2f8f8;
  color: var(--teal);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.cart-item__qty {
  min-width: 16px;
  text-align: center;
  font-weight: 600;
}

.cart-item__remove {
  border: none;
  background: transparent;
  color: #8b9494;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cart-item.is-swipe-revealed {
  transform: translateX(-10px);
}

.cart-item.is-swipe-revealed::after {
  content: "Eliminar";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #c04f4f;
  font-weight: 700;
  opacity: 0.9;
  pointer-events: none;
}

@media (hover: none) {
  .cart-item:active {
    transform: scale(0.98);
    box-shadow: 0 10px 26px rgba(12, 53, 53, 0.12);
  }
}


.cart-item.is-removing {
  opacity: 0;
  transform: translateX(12px);
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 32px 0;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 38px 22px 26px;
  text-align: center;
  color: var(--text);
  background: linear-gradient(180deg, #f5fbfb 0%, #ffffff 60%);
  border-radius: 24px;
  border: 1px solid #e4eded;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.cart-empty-state__icon {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: #e7f2f2;
  display: grid;
  place-items: center;
  font-size: 34px;
  color: var(--teal);
  box-shadow: 0 10px 30px rgba(14, 64, 64, 0.1);
}

.cart-empty-state__title {
  margin: 6px 0 0;
  font-size: 22px;
  font-weight: 700;
  color: #0f2c2c;
}

.cart-empty-state__subtitle {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.cart-empty-state__actions {
  margin-top: 8px;
  display: grid;
  gap: 12px;
  width: min(320px, 100%);
}

.cart-empty-state__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  background: var(--teal);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 12px 20px rgba(15, 81, 81, 0.18);
}

.cart-empty-state__cta--ghost {
  background: #fff;
  color: var(--teal);
  border-color: #cde5e5;
  box-shadow: none;
}

.cart-drawer__summary {
  border-top: 1px solid #eef1f1;
  border-bottom: 1px solid #eef1f1;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.cart-summary__row strong {
  font-size: 16px;
  color: var(--text);
}

.cart-summary__row--total {
  padding-top: 6px;
  border-top: 1px dashed #dfe7e7;
}

.cart-summary__row--total strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
}

.cart-summary__discount {
  color: #d09b08;
}

.cart-drawer__footer {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 20px;
  background: #fff;
}

.cart-drawer__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: var(--teal);
  color: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.cart-drawer__cta--ghost {
  background: transparent;
  color: var(--teal);
  border: 1px solid #cfe1e1;
}

@media (max-width: 768px) {
  .cart-drawer__panel {
    width: min(100%, 420px);
    height: 100vh;
    max-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    gap: 14px;
    padding: 16px 18px 18px;
  }

  .cart-drawer__header {
    position: sticky;
    top: 0;
    padding-bottom: 14px;
    padding-top: 4px;
    box-shadow: 0 6px 12px rgba(9, 35, 35, 0.05);
  }

.img_hero-offer-modal__headline {
  height: 35vh;
  width: 100%;
}

.hero-offer-modal__form_off {
height: 50vh;
}



  .cart-drawer__body {
    padding: 4px 6px 10px 0;
  }

  .cart-drawer__summary {
    position: sticky;
    bottom: 132px;
    border-top: 1px solid #e4ecec;
    border-bottom: 0;
    padding: 20px 2px 18px;
    gap: 14px;
  }

  .cart-drawer__footer {
    position: sticky;
    bottom: 0;
    grid-template-columns: 1fr;
    padding: 10px 0 24px;
  }

  .cart-drawer__cta {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cart-drawer__panel {
    width: 100%;
    border-radius: 0;
  }

.section-heading {
  margin-left: 4%;
}

.section-heading h2{
  color: #197373;
}

.featured-card {
  border-radius: 0px;
}

.categories h2 {
  color: #197373;
  margin-left: 4%;
}

.featured {
  margin-bottom: 21px;
}
  .catalog-page .product-card {
    border-radius: 0;
  }
  .cart-drawer__list {
    gap: 14px;
  }

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

  .cart-item__media img {
    width: 78px;
    height: 78px;
    border-radius: 14px;
  }

  .cart-item__top {
    align-items: flex-start;
  }

  .cart-item__price {
    font-size: 17px;
  }

  .cart-item__meta {
    margin: 2px 0 8px;
  }

  .cart-item__swatches {
    gap: 4px;
  }

  .cart-item__controls {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .cart-item__qty-controls {
    gap: 10px;
  }

  .cart-item__qty-controls button {
    width: 40px;
    height: 40px;
  }

  .cart-item__remove {
    margin-left: auto;
    font-size: 13px;
    color: #6f7a7a;
    text-align: right;
  }

  .cart-item.is-swipe-revealed .cart-item__remove {
    color: #c04f4f;
  }

  .cart-drawer__summary {
    bottom: 140px;
    padding: 22px 0 18px;
  }

  .cart-summary__row strong {
    font-size: 15px;
  }

  .cart-summary__row--total strong {
    font-size: 19px;
  }

  .cart-drawer__footer {
    padding-bottom: 26px;
  }
}

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

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

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

  .featured-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page {
    padding: 0px;
  }

  .page::before {
    background: radial-gradient(circle at 18% 14%, rgba(86, 134, 160, 0.16), transparent 34%),
      radial-gradient(circle at 78% 10%, rgba(154, 132, 188, 0.12), transparent 34%),
      linear-gradient(180deg, #f3f6fa 0%, #ecf2f8 40%, #f5f7fb 100%);
  }

  .hero {
    min-height: 340px;
    max-height: 340px;
    border-radius: 0;
    margin: 0px;
  }

  .hero-offer {
    left: 0;
    top: 120px;
    animation-duration: 2s;
  }

  .hero-offer__link {
    min-height: 130px;
    font-size: 20px;
    padding: 10px 6px;
  }

  .hero-offer-modal {
    padding: 0;
  }

  .hero-offer-modal__dialog {
    width: 100%;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    display: flex;
  }

  .hero-offer-modal__content {
    grid-template-columns: 1fr;
    min-height: 100%;
    background-color: #fdfdfd;
  }

  .hero-offer-modal__dismiss {
    top: 10px;
    right: 14px;
    font-size: 30px;
  }

  .hero-offer-modal__brand-column {
    display: none;
  }

  .hero-offer-modal__form-column {
    height: 100%;
    overflow: auto;
    padding: 22px clamp(14px, 4.5vw, 20px) max(16px, env(safe-area-inset-bottom));
    gap: 10px;
    align-content: start;
    background-color: #fefefe;
  }

  .hero-offer-modal__logo {
    width: clamp(80px, 20vw, 110px);
    margin-bottom: 2px;
  }

  .hero-offer-modal__headline h2 {
    font-size: clamp(30px, 9.2vw, 42px);
    line-height: 1.14;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
    letter-spacing: -0.01em;
  }

  .hero-offer-modal__mobile-logo {
    display: block;
    width: clamp(86px, 28vw, 130px);
    margin: 8px auto 16px;
  }

  .hero-offer-modal__headline-icon {
    display: none;
  }

  .hero-offer-modal__headline-icon--heart {
    top: 48px;
    right: 22px;
    font-size: clamp(20px, 5vw, 24px);
    transform: rotate(15deg);
  }

  .hero-offer-modal__headline-icon--paw {
    right: -4px;
    bottom: -70px;
    font-size: clamp(30px, 8vw, 42px);
  }

  .hero-offer-modal__accent-heart,
  .hero-offer-modal__accent-paw {
    color: inherit;
  }

  .hero-offer-modal__offer {
    margin-top: 2px;
    text-align: center;
  }

  .hero-offer-modal__offer-title {
    color: #181c26;
    font-family: "Inter", sans-serif;
    font-size: clamp(24px, 6.8vw, 32px);
    line-height: 1.08;
    font-weight: 800;
  }

  .hero-offer-modal__description {
    font-size: clamp(16px, 4.5vw, 22px);
    line-height: 1.2;
    text-align: center;
  }

  .hero-offer-modal__form {
    gap: 8px;
  }

  .hero-offer-modal__field {
    min-height: 56px;
    border-radius: 16px;
    padding: 0 12px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero-offer-modal__field span {
    font-size: 24px;
  }

  .hero-offer-modal__field input,
  .hero-offer-modal__field select {
    min-height: 48px;
    font-size: 17px;
  }

  .hero-offer-modal__checks {
    gap: 8px;
    margin-top: 2px;
    font-size: 13px;
    display: grid;
    margin-top: 9px;
    font-size: 83%;
  }

  .hero-offer-modal__checks label {
    grid-template-columns: 18px 1fr;
    gap: 8px;
  }

  .hero-offer-modal__checks input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .hero-offer-modal__cta {
    min-height: 52px;
    font-size: clamp(24px, 7.2vw, 32px);
    margin-top: 1%;
    padding: 4%;
  }

.div_hero-offer-modal__no-thanks {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.img_hero-offer-modal__headline_desktop {
  height: 30vh;
  width: 90%;
}

  .hero-offer-modal__no-thanks {
    font-size: 30px;
  }

  .hero-offer-modal__content small {
    font-size: 12px;
    line-height: 1.25;
  }

  .hero__slider {
    min-height: 340px;
    max-height: 340px;
  }

  .hero__slide {
    height: 100%;
  }

  .hero__content {
    width: 100%;
    max-width: none;
    padding: clamp(24px, 7vw, 40px) clamp(16px, 5vw, 28px);
    gap: 10px;
    align-content: center;
    justify-items: center;
  }

  .eyebrow {
    font-size: clamp(11px, 3.2vw, 13px);
    letter-spacing: 0.18em;
  }

  .hero__mobile-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
  }

  .hero h1 {
    font-size: clamp(34px, 9.2vw, 52px);
    line-height: 1.04;
    text-wrap: balance;
    max-inline-size: 100%;
  }

  .hero__subtitle {
    font-size: clamp(15px, 4.6vw, 20px);
    line-height: 1.2;
    max-inline-size: 100%;
    text-wrap: balance;
  }

  .hero .cta {
    max-width: none;
    min-width: min(62vw, 260px);
    padding-inline: clamp(24px, 8vw, 36px);
    margin-bottom: 0;
  }

  .hero__dots {
    bottom: clamp(10px, 3.2vw, 18px);
    z-index: 3;
  }

  .category-carousel {
    overflow: hidden;
    margin-inline: -8px;
    padding-inline: 8px;
    margin-top: 7px;
  }

  .category-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 8px 6px 10px;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    flex: 0 0 clamp(100px, 20vw, 248px);
    transform: scale(0.94);
    transform-origin: center;
    transition: transform 0.28s ease;
    gap: 14px;
  }

  .category-card .category-media {
    border-color: #d7dde2;
  }

  .category-card.is-active {
    transform: scale(1);
  }

  .category-card.is-active .category-media {
    border-color: #b8c6cd;
  }

  .category-card.is-active .category-label {
    color: #0f3741;
  }

  .category-card.is-active .category-chip {
    border-color: #a8b8bf;
  }

  .categories h2 {
      font-size: 26px;
      display: grid;
  }


  .category-content {
      font-size: 6px;
  }

  .categories-heading__line {
    width: 72px;
    height: 4px;
    margin-top: 14px;
  }

  .category-label {
    font-size: 19px;
  }
  .categories {
    margin: 0;
    margin-top: 10px;
  }
  .category-chip {
    font-size: 12px;
    gap: 10px;
    letter-spacing: 0.16em;
  }

  .category-chip__arrow {
    font-size: 26px;
  }

.categories-heading {
  margin-bottom: 0px;
}

  .main-header {
    padding: 16px;
    border-radius: 32px;
    box-shadow: 0 24px 48px rgba(29, 88, 110, 0.16);
    border-color: #e7edf3;
  }

  .header__grid {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .header-utilities {
    gap: 10px;
  }

  :is(.catalog-page, .home-page, .favorites-body, .account-body, .ratings-body) .header-utilities .menu-toggle {
    display: none;
  }

  :is(.catalog-page, .home-page, .favorites-body, .account-body, .ratings-body) .header__grid {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "brand search actions";
    gap: 8px;
    align-items: center;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .header__grid {
    /*grid-template-columns: 1fr auto 1fr;*/
    grid-template-areas: ". brand actions";
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .logo {
    grid-area: brand;
    justify-self: center;
    align-items: center;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .header-mobile-actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .help-link {
    display: none;
  }

  :is(.catalog-page, .home-page, .favorites-body, .account-body, .ratings-body) .main-header {
    padding: 12px;
    border-radius: 0px;
    margin: 0px;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .main-header {
    position: relative;
    overflow: visible;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .main-header.is-mobile-search-open {
    padding-bottom: 0;
  }

  :is(.catalog-page, .home-page, .favorites-body, .account-body, .ratings-body) .logo-image {
    width: 92px;
  }

  :is(.catalog-page, .home-page, .favorites-body, .account-body, .ratings-body) .search {
    min-width: 0;
    min-height: 44px;
    padding-inline: 8px 10px;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .header__search {
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    height: 46px;
    padding-inline: 0;
    justify-content: center;
    background: linear-gradient(135deg, #f4f8fa, #edf3f5);
    border: 1px solid #dce8ec;
    border-radius: 50%;
    box-shadow: none;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .header__search .header__search-toggle {
    display: inline-flex;
    width: 100%;
    height: 100%;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .header__search .icon,
  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .header__search input {
    display: none;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .header__search.is-mobile-search-open {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: auto;
    min-width: 0;
    min-height: 46px;
    padding-inline: 12px 14px;
    justify-content: flex-start;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(29, 88, 110, 0.14);
    z-index: 25;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .header__grid.is-mobile-search-open {
    overflow: visible;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .header__search.is-mobile-search-open .header__search-toggle {
    display: none;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .header__search.is-mobile-search-open .icon {
    display: inline-flex;
    margin-right: 6px;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .header__search.is-mobile-search-open input {
    display: block;
  }

  :is(.catalog-page, .home-page, .favorites-body, .account-body, .ratings-body) .search input {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    padding-block: 10px;
  }

  :is(.catalog-page, .home-page, .favorites-body, .account-body, .ratings-body) .search .icon {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }

  :is(.home-page, .catalog-page, .favorites-body, .account-body, .ratings-body) .header-mobile-actions .cart-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  .logo {
    align-items: flex-start;
  }

  .cart {
    min-width: 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    border-color: #dce8ec;
    background: linear-gradient(135deg, #f4f8fa, #edf3f5);
    box-shadow: none;
  }

  .cart-count {
    top: -7px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .profile {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #f4f8fa, #edf3f5);
    border: 1px solid #dce8ec;
  }

  .profile-wrapper {
    position: static;
  }

  .user-menu {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1100;
  }

  .user-menu.is-open {
    display: block;
  }

  .user-menu__dropdown {
    display: none;
  }

  .user-menu__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }

  .user-menu.is-open .user-menu__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .user-menu__panel {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 90vw);
    height: 100vh;
    background: #fff;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.14);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding-bottom: 24px;
  }

  .user-menu__panel-close {
    display: inline-flex;
  }

  .user-menu.is-open .user-menu__panel {
    transform: translateX(0);
  }

  .user-menu__panel .user-menu__section {
    padding: 14px 18px 12px;
    border-top: 1px solid #eef1f1;
  }

  .user-menu__panel .user-menu__item {
    padding: 14px 14px;
    font-size: 15px;
  }

  .help-link {
    display: none;
  }

  .search {
    min-height: 50px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f8fbff;
    border-color: #e3e9ef;
    box-shadow: none;
  }

  .search input {
    padding: 12px 8px;
    font-size: 15px;
    color: #6f8492;
  }

  .search .icon {
    font-size: 22px;
    margin-right: 12px;
  }

  .logo-image {
    width: clamp(96px, 28vw, 124px);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1200;
  }

  .mobile-nav[aria-hidden="true"] {
    display: none;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 31, 31, 0.4);
  }

  .mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    background: #fff;
    padding: 22px 18px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 16px;
    box-shadow: -16px 0 48px rgba(8, 33, 41, 0.18);
  }

  .mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-nav__title {
    margin: 0;
    font-size: 20px;
    color: var(--teal);
  }

  .mobile-nav__close {
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #eff4f7;
    color: #5f7385;
    font-size: 22px;
  }

  .mobile-nav__links {
    display: grid;
    gap: 8px;
    align-content: start;
  }

  .mobile-nav__link {
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #e1eaef;
    color: var(--text);
    font-weight: 600;
    background: #f8fbfd;
  }

  .layout {
    gap: 24px;
  }

  .filters-panel {
    display: none;
  }

  .filters-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 32, 32, 0.35);
    z-index: 1000;
    display: none;
  }

  .filters-overlay.is-visible {
    display: block;
  }

  .filters-panel.is-open {
    display: block;
    position: fixed;
    inset: 50px 14px auto 14px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    z-index: 1001;
    padding-top: 56px;
  }

  .filters-panel-nav {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e7efef;
  }

  .filters-panel-nav .filters-title {
    margin-bottom: 10px;
  }

  .filters-panel-nav__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .filters-panel-nav .nav-link {
    appearance: none;
    cursor: pointer;
    font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #d9e8e7;
    background: #f7fbfb;
    color: var(--teal);
    border-bottom: 1px solid #d9e8e7;
  }

  .filters-panel-nav .nav-link.is-active {
    background: #1d6d6d;
    border-color: #1d6d6d;
    color: #fff;
  }

  .filters-panel-nav .nav-link:hover,
  .filters-panel-nav .nav-link:focus-visible {
    border-color: #1d6d6d;
  }

  .filters-group--mobile-account {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #e7efef;
  }

  .filters-panel__heading {
    font-size: 24px;
  }

  .filters-apply {
    display: block;
    position: sticky;
    bottom: 0;
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 12px 14px;
    margin-top: 20px;
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 14px 24px rgba(16, 50, 50, 0.2);
  }

  .filters-close {
    display: inline-flex;
  }

  .catalog-header {
    display: none;
  }

  .catalog-page .mobile-controls {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 8px 10px calc(6px + env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    background: rgba(246, 250, 252, 0.96);
    border: 1px solid rgba(212, 227, 238, 0.9);
    box-shadow: 0 -8px 24px rgba(16, 50, 50, 0.14);
    backdrop-filter: blur(10px);
  }

  .catalog-page .page {
    padding-bottom: calc(124px + env(safe-area-inset-bottom));
  }

  .mobile-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-pill {
    border: 1px solid #ccdde8;
    background: linear-gradient(180deg, #ffffff 0%, #f5fafc 100%);
    border-radius: 999px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.01em;
    color: #1a4963;
    box-shadow: 0 8px 16px rgba(18, 75, 96, 0.11);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .mobile-pill:hover,
  .mobile-pill:focus-visible {
    transform: translateY(-1px);
    border-color: #8cb0c5;
    box-shadow: 0 12px 20px rgba(18, 75, 96, 0.18);
    outline: none;
  }

  .mobile-pill--segment {
    background: #1d6d6d;
    color: #fff;
    border-color: #1d6d6d;
  }

  .pill-icon {
    font-size: 13px;
  }

  .mobile-results {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #5f7385;
    padding-left: 2px;
  }

  .mobile-section-heading h1 {
    margin: 0;
    font-size: 26px;
    color: var(--teal);
  }

  .mobile-section-heading .subtitle {
    margin-top: 6px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    border-radius: 28px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f0f4f4;
    box-shadow: 0 35px 70px rgba(15, 40, 40, 0.08);
  }

  .card-image img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-position: center;
  }

  .catalog-page .badge {
    left: 12px;
    top: 12px;
    font-size: 14px;
    padding: 8px 15px;
  }

  .catalog-page .badge.new {
    top: 12px;
  }

  .catalog-page .product-card .quick-btn {
    display: none;
  }

  .catalog-page .product-card .favorite-btn {
    display: grid;
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    background: rgba(255, 236, 239, 0.96);
  }

  .catalog-page .card-body {
    gap: 12px;
    padding: 24px;
    align-content: center;
  }

  .catalog-page .product-name {
    font-size: 18px;
    line-height: 1.2;
    color: #1f2f41;
  }

  .catalog-page .prices .current {
    font-size: 22px;
    line-height: 1.1;
  }

  .catalog-page .prices .old {
    font-size: 14px;
  }

  .catalog-page .color-choices {
    padding: 0;
  }

  .catalog-page .color-dot {
    width: 22px;
    height: 22px;
    box-shadow: none;
    border: none;
  }

  .card-actions {
    align-items: center;
  }

  .catalog-page .add-btn {
    border-radius: 999px;
    padding: 12px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .catalog-page .add-btn::after {
    content: "🛒";
    font-size: 14px;
  }

  .quick-btn {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(31, 107, 107, 0.1);
  }

}

@media (min-width: 769px) {
  .filters-panel-nav {
    display: none;
  }

  .filters-group--mobile-account {
    display: none;
  }
}


.email-verification-banner {
  background: #fff3cd;
  color: #7a5a00;
  border-bottom: 1px solid #f0d98a;
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) and (max-height: 760px) {
  .hero-offer-modal__content {
    padding-top: 10px;
    gap: 6px;
  }

  .hero-offer-modal__headline h2 {
    font-size: clamp(24px, 7.8vw, 34px);
    max-width: 290px;
    line-height: 1.12;
  }

  .hero-offer-modal__description {
    font-size: clamp(13px, 3.6vw, 17px);
  }

  .hero-offer-modal__field {
    min-height: 42px;
  }

  .hero-offer-modal__field input,
  .hero-offer-modal__field select {
    min-height: 34px;
    font-size: 14px;
  }

  .hero-offer-modal__checks,
  .hero-offer-modal__content small {
    font-size: 10px;
  }

  .hero-offer-modal__cta {
    min-height: 44px;
    font-size: 18px;
  }
}
