:root {
  --bg: #f4f7fb;
  --bg-alt: #eef3f8;
  --bg-soft: #f9fbfd;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-tint: rgba(242, 247, 252, 0.92);
  --border: rgba(121, 146, 178, 0.2);
  --border-strong: rgba(57, 92, 138, 0.18);
  --text: #12304d;
  --text-strong: #0b2238;
  --muted: #58718e;
  --muted-strong: #37516b;
  --accent: #3d78b4;
  --accent-strong: #224f86;
  --accent-soft: rgba(61, 120, 180, 0.1);
  --accent-warm: #f29a4a;
  --shadow: 0 24px 60px rgba(39, 71, 110, 0.12);
  --shadow-soft: 0 18px 34px rgba(52, 82, 117, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1160px;
  --product-media-height: 248px;
  --product-media-height-mobile: 190px;
  --hero-background-image: image-set(
    url("/background-1920.webp") type("image/webp"),
    url("/background.png") type("image/png")
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(168, 201, 235, 0.42), transparent 24%),
    radial-gradient(circle at top right, rgba(240, 153, 88, 0.12), transparent 18%),
    linear-gradient(180deg, #f7fafc 0%, #f2f6fb 40%, #edf2f8 100%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(82px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  top: 7rem;
  right: -11rem;
  background: rgba(178, 211, 237, 0.6);
}

.page-shell::after {
  bottom: 10rem;
  left: -10rem;
  background: rgba(230, 238, 247, 0.95);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(160, 182, 208, 0.24);
  box-shadow: 0 6px 24px rgba(64, 95, 131, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.2rem 0;
  max-width: 200px;
}

.logo-image {
  display: block;
  width: auto;
  height: 44px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(54, 88, 124, 0.08));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--muted-strong);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text-strong);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(34, 79, 134, 0.36);
  outline-offset: 3px;
}

.site-nav a[aria-current="page"] {
  padding-bottom: 0.1rem;
  border-bottom: 1px solid rgba(34, 79, 134, 0.34);
}

.nav-offer-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-offer-link::after {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-offer-item:hover .nav-offer-link::after,
.nav-offer-item:focus-within .nav-offer-link::after {
  transform: translateY(0.05rem) rotate(225deg);
}

.nav-offer-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  z-index: 30;
  width: min(680px, calc(100vw - 2rem));
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-offer-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 1rem;
}

.nav-offer-item:hover .nav-offer-dropdown,
.nav-offer-item:focus-within .nav-offer-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-offer-panel {
  padding: 1rem;
  border: 1px solid rgba(121, 146, 178, 0.2);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.98));
  box-shadow: 0 24px 54px rgba(39, 71, 110, 0.15);
}

.nav-dropdown-label {
  display: block;
  margin: 0 0 0.7rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.site-nav .nav-offer-category {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(121, 146, 178, 0.13);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font-weight: 700;
}

.site-nav .nav-offer-category:hover,
.site-nav .nav-offer-category:focus-visible {
  border-color: rgba(61, 120, 180, 0.28);
  background: rgba(61, 120, 180, 0.08);
  color: var(--text-strong);
}

.nav-cta {
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(61, 120, 180, 0.16);
  border-radius: 999px;
  background: rgba(61, 120, 180, 0.08);
}

.nav-cta[aria-current="page"] {
  border-bottom: 1px solid rgba(61, 120, 180, 0.16);
  background: rgba(61, 120, 180, 0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(121, 146, 178, 0.2);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-strong);
  cursor: pointer;
}

.nav-toggle span {
  width: 1.2rem;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero,
.page-hero {
  padding: 5.8rem 0 4rem;
}

.hero {
  position: relative;
  min-height: min(52rem, calc(100vh - 82px));
  display: flex;
  align-items: center;
  background:
    linear-gradient(108deg, rgba(247, 250, 252, 0.76) 0%, rgba(247, 250, 252, 0.58) 32%, rgba(247, 250, 252, 0.18) 65%, rgba(247, 250, 252, 0.06) 100%),
    linear-gradient(180deg, rgba(25, 59, 92, 0.08) 0%, rgba(25, 59, 92, 0.12) 100%),
    var(--hero-background-image) center center / cover no-repeat;
}

body[data-page="home"] .hero {
  min-height: min(40rem, calc(100vh - 82px));
  padding: 2rem 0;
}

body[data-page="home"] .hero-grid {
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%),
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.34), transparent 24%);
  pointer-events: none;
}

.page-hero {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(181, 214, 239, 0.45), transparent 22%),
    linear-gradient(180deg, #f7fafd 0%, #eef4f9 100%);
}

body[data-page="offer-list"] .page-hero {
  padding: 1rem 0 1.6rem;
}

body[data-page="offer-list"] .page-hero-grid {
  gap: 1.35rem;
  align-items: stretch;
}

body[data-page="category-detail"] .page-hero,
body[data-page="product-detail"] .page-hero {
  padding: 1.15rem 0 2.4rem;
}

body[data-page="category-detail"] .detail-hero-grid,
body[data-page="product-detail"] .detail-hero-grid {
  gap: 1.45rem;
}

.hero-grid,
.page-hero-grid,
.detail-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.page-hero-grid,
.detail-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.hero-copy,
.detail-copy {
  position: relative;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero .eyebrow {
  color: #234d7c;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.hero-card h2,
.contact-copy h2,
.detail-copy h1 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--text-strong);
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
}

body[data-page="offer-list"] .page-hero h1 {
  font-size: clamp(2.35rem, 4.8vw, 4rem);
  max-width: 13ch;
}

.hero h1 {
  max-width: 12ch;
}

body[data-page="home"] .hero h1 {
  font-size: clamp(2.7rem, 5.8vw, 4.45rem);
  max-width: 13ch;
}

.hero-text,
.page-hero p,
.section-heading,
.panel p,
.service-card p,
.contact-copy p,
.contact-points,
.form-note,
.offer-note,
.product-card p,
.detail-copy p,
.detail-section p,
.breadcrumbs {
  color: var(--muted);
}

.hero-text,
.page-hero p,
.detail-copy p {
  max-width: 60ch;
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
  line-height: 1.85;
}

body[data-page="offer-list"] .page-hero p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-text {
  color: rgba(18, 48, 77, 0.86);
  max-width: 56ch;
}

body[data-page="home"] .hero-text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions,
.page-actions,
.detail-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

body[data-page="home"] .hero-actions {
  margin-top: 1.35rem;
}

body[data-page="offer-list"] .page-actions {
  margin-top: 1.25rem;
}

body[data-page="offer-list"] .page-actions .button {
  min-height: 3.1rem;
  padding: 0.8rem 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 32px rgba(61, 120, 180, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 36px rgba(61, 120, 180, 0.28);
}

.button-secondary {
  border-color: rgba(103, 130, 162, 0.22);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-strong);
  box-shadow: 0 12px 24px rgba(76, 103, 137, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(61, 120, 180, 0.24);
}

.button-offer-cta {
  min-width: 240px;
  min-height: 4.05rem;
  margin-left: 2rem;
  padding: 1rem 2.4rem;
  border-radius: 0.95rem;
  border-color: rgba(29, 78, 216, 0.34);
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, #225fb5 0%, #102f68 100%);
  box-shadow: 0 12px 26px rgba(15, 47, 107, 0.24);
  cursor: pointer;
}

.button-offer-cta:hover,
.button-offer-cta:focus-visible {
  background: linear-gradient(135deg, #2b6cc6 0%, #153a78 100%);
  border-color: rgba(29, 78, 216, 0.46);
  box-shadow: 0 16px 34px rgba(15, 47, 107, 0.3);
}

.button-offer-cta:focus-visible {
  outline: 3px solid rgba(29, 78, 216, 0.35);
  outline-offset: 3px;
}

.hero .button-secondary {
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(10px);
}

.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 80;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.1rem 1.4rem;
  width: min(100%, 980px);
  padding: 1rem;
  border: 1px solid rgba(61, 120, 180, 0.22);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.98));
  box-shadow: 0 24px 60px rgba(39, 71, 110, 0.18);
  pointer-events: auto;
}

.cookie-consent-copy {
  display: grid;
  gap: 0.35rem;
}

.cookie-consent-label {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.cookie-consent h2 {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.08rem;
  line-height: 1.25;
}

.cookie-consent p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.55;
}

.cookie-consent a {
  width: fit-content;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.cookie-consent-settings {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.cookie-consent-settings[hidden] {
  display: none;
}

.cookie-consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
  padding: 0.85rem;
  border: 1px solid rgba(121, 146, 178, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(244, 247, 251, 0.74);
}

.cookie-consent-option span {
  display: grid;
  gap: 0.18rem;
}

.cookie-consent-option strong {
  color: var(--text-strong);
  font-size: 0.94rem;
}

.cookie-consent-option small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.cookie-consent-option input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--accent-strong);
  flex: 0 0 auto;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.cookie-consent-actions .button {
  min-height: 2.9rem;
  padding: 0.72rem 1rem;
  white-space: nowrap;
}

.button-full {
  width: 100%;
}

.desktop-inline {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.6rem 0 0;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .hero-stats {
  gap: 0.8rem;
  margin-top: 1.55rem;
}

.surface-card,
.hero-stats li,
.hero-card,
.panel,
.service-card,
.contact-card,
.product-card,
.offer-intro,
.detail-media,
.detail-section,
.breadcrumbs-wrap,
.inquiry-panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 254, 0.92));
  box-shadow: var(--shadow);
}

.hero-stats li {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 32px rgba(43, 80, 122, 0.12);
}

body[data-page="home"] .hero-stats li {
  padding: 0.9rem 1rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--text-strong);
}

body[data-page="home"] .hero-stats strong {
  font-size: 1rem;
}

.hero-stats span {
  color: rgba(18, 48, 77, 0.8);
  font-size: 0.96rem;
  line-height: 1.5;
}

body[data-page="home"] .hero-stats span {
  font-size: 0.9rem;
  line-height: 1.42;
}

.hero-card,
.panel,
.service-card,
.contact-card,
.product-card,
.offer-intro,
.detail-media,
.detail-section,
.breadcrumbs-wrap,
.inquiry-panel {
  border-radius: var(--radius-lg);
}

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: center;
  padding: 2rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(250, 252, 254, 0.72));
  backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 28px 50px rgba(45, 77, 113, 0.14);
}

.card-glow {
  position: absolute;
  inset: -8rem auto auto -4rem;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 231, 245, 0.92), transparent 64%);
  pointer-events: none;
}

.card-label {
  position: relative;
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.hero-card h2 {
  position: relative;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--text-strong);
}

.hero-card p {
  position: relative;
  line-height: 1.8;
  color: var(--muted);
}

.check-list {
  position: relative;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.check-list span,
.feature-list li,
.usage-list li {
  display: flex;
  gap: 0.75rem;
}

.check-list span {
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(117, 148, 182, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.58);
}

.check-list span::before,
.feature-list li::before,
.usage-list li::before,
.catalog-meta span::before {
  content: "";
  flex: 0 0 0.7rem;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 0 0 6px rgba(61, 120, 180, 0.08);
}

.section {
  padding: 2.8rem 0 4rem;
}

.section:nth-of-type(even):not(.hero):not(.page-hero) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.24));
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 2rem;
}

.section-heading-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-offer-preview .section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(240px, 0.34fr);
  align-items: center;
  max-width: none;
  width: 100%;
  gap: 3rem;
}

.offer-heading-copy {
  max-width: 44rem;
}

.section-offer-preview .button-offer-cta.desktop-inline {
  align-self: center;
  justify-self: center;
  flex-shrink: 0;
  margin-left: 0;
  margin-top: 0.4rem;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

.about-grid,
.cards-grid,
.contact-grid,
.catalog-grid,
.detail-sections-grid {
  display: grid;
  gap: 1.35rem;
}

.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.service-card,
.contact-card,
.offer-intro,
.detail-media,
.detail-section,
.inquiry-panel {
  padding: 1.8rem;
}

.panel p,
.service-card p,
.contact-copy p,
.contact-points span,
.contact-points a,
.form-note,
.offer-note,
.detail-section p {
  margin: 0;
  line-height: 1.8;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card h3,
.product-card h2,
.detail-section h2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--text-strong);
}

.product-tag {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-tag {
  color: var(--accent-strong);
}

.feature-list,
.usage-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
}

.feature-list li,
.usage-list li {
  line-height: 1.65;
}

.feature-list,
.usage-list {
  padding-left: 0;
  list-style: none;
}

.category-link-grid {
  display: grid;
  gap: 0.75rem;
}

.category-link-grid a {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(117, 148, 182, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-link-grid a:hover,
.category-link-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(61, 120, 180, 0.32);
  background: rgba(255, 255, 255, 0.82);
}

.category-link-grid strong {
  color: var(--text-strong);
}

.category-link-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.offer-info-panel {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.8rem;
  padding: 2rem;
  border: 1px solid rgba(121, 146, 178, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(238, 245, 251, 0.78), rgba(247, 250, 253, 0.92));
}

.offer-info-head {
  max-width: 48rem;
}

.offer-info-head h3,
.offer-info-card h4 {
  margin: 0;
  color: var(--text-strong);
}

.offer-info-head h3 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.offer-info-head p,
.offer-info-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.offer-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  align-items: stretch;
  gap: 1.2rem;
}

.offer-info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(121, 146, 178, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.offer-info-card h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.offer-info-panel .category-link-grid a {
  background: rgba(255, 255, 255, 0.48);
  box-shadow: none;
}

.offer-info-panel .category-link-grid {
  flex: 1;
  grid-auto-rows: minmax(0, 1fr);
}

.offer-info-panel .category-link-grid a,
.application-list div {
  align-content: start;
}

.application-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.15rem;
  flex: 1;
  grid-auto-rows: minmax(0, 1fr);
}

.application-list div {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(121, 146, 178, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
}

.application-list strong {
  color: var(--text-strong);
}

.application-list span {
  color: var(--muted);
  line-height: 1.55;
}

.application-cta {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(61, 120, 180, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(239, 247, 253, 0.72);
}

.application-cta strong {
  color: var(--text-strong);
}

.application-cta span {
  color: var(--muted);
  line-height: 1.6;
}

.application-cta a {
  width: fit-content;
  color: var(--accent-strong);
  font-weight: 700;
}

.application-cta a:hover,
.application-cta a:focus-visible {
  color: var(--text-strong);
}

.preview-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-soft);
}

.category-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.96));
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(61, 120, 180, 0.3);
  box-shadow: 0 26px 48px rgba(52, 84, 118, 0.16);
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(61, 120, 180, 0.3);
  box-shadow: 0 26px 48px rgba(52, 84, 118, 0.16);
}

.product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  --product-image-max-height: calc(var(--product-media-height) - 4.8rem);
  height: var(--product-media-height);
  min-height: var(--product-media-height);
  padding: 1.2rem;
  border-bottom: 1px solid rgba(121, 146, 178, 0.1);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 254, 0.95) 44%, rgba(237, 244, 250, 0.9) 100%),
    linear-gradient(180deg, rgba(252, 253, 255, 0.96), rgba(243, 248, 252, 0.92));
  overflow: hidden;
  isolation: isolate;
}

.product-media-gallery {
  border-bottom: 0;
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0) 56%, rgba(239, 245, 250, 0.58) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

.product-card .product-media {
  padding: 1rem;
  border-bottom: 1px solid rgba(121, 146, 178, 0.08);
  background: linear-gradient(180deg, #fbfdff 0%, #f3f7fb 100%);
}

.product-card .product-media::before {
  content: none;
}

.product-image-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 1.2rem;
  border: 1px solid rgba(121, 146, 178, 0.1);
  border-radius: calc(var(--radius-lg) - 8px);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.99) 0%, rgba(251, 252, 254, 0.98) 48%, rgba(244, 248, 252, 0.94) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 251, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -18px 28px rgba(224, 234, 243, 0.22);
  overflow: hidden;
}

.product-card .product-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -10px 18px rgba(226, 234, 242, 0.24),
    0 6px 16px rgba(30, 58, 92, 0.04);
}

.product-figure-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: #ffffff;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
}

.product-image-frame picture {
  display: contents;
}

.product-card .product-figure-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.08));
}

.product-lightbox-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: calc(var(--radius-lg) - 8px);
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.product-lightbox-trigger .product-image-frame {
  pointer-events: none;
}

.product-lightbox-trigger:focus-visible {
  outline: 3px solid rgba(61, 120, 180, 0.44);
  outline-offset: 4px;
}

body.lightbox-open {
  overflow: hidden;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(7, 17, 31, 0.74);
  backdrop-filter: blur(8px);
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox-content {
  position: relative;
  display: grid;
  place-items: center;
  max-width: min(1160px, 92vw);
  max-height: 92vh;
}

.product-lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 88vh;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 14px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
}

.product-lightbox-close {
  position: absolute;
  top: -0.85rem;
  right: -0.85rem;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(121, 146, 178, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-strong);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.product-lightbox-close:hover,
.product-lightbox-close:focus-visible {
  color: var(--accent-strong);
}

@media (min-width: 761px) {
  .category-card .product-figure-image {
    width: auto;
    height: auto;
    max-height: var(--product-image-max-height, 100%);
  }
}

.product-media-label {
  display: none !important;
}

.product-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.45rem;
}

.category-card-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.45rem;
}

.product-card h2 {
  font-size: 1.5rem;
}

.category-card h2 {
  margin: 0;
  font-size: 1.62rem;
  color: var(--text-strong);
}

.product-card p {
  margin: 0;
  line-height: 1.75;
}

.product-card .catalog-meta {
  margin-top: auto;
  padding-top: 0.25rem;
}

.product-card .card-link {
  margin-top: 0.15rem;
}

.category-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.2rem;
}

.catalog-meta span {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.catalog-meta span::before {
  margin-top: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.product-card:hover .card-link::after,
.product-card:focus-visible .card-link::after {
  transform: translateX(4px);
}

.page-hero-card {
  display: grid;
  gap: 1rem;
}

.offer-intro {
  height: 100%;
}

body[data-page="offer-list"] .offer-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  padding: 1.35rem;
}

body[data-page="offer-list"] .offer-intro h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.12;
}

body[data-page="offer-list"] .offer-intro .catalog-meta {
  margin-top: 0;
}

.breadcrumbs-wrap {
  width: fit-content;
  margin-top: 2rem;
  padding: 1rem 1.3rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 30px rgba(55, 87, 124, 0.08);
}

body[data-page="offer-list"] .breadcrumbs-wrap {
  margin-top: 0;
  margin-bottom: 1.35rem;
  padding: 0.7rem 1rem;
}

body[data-page="category-detail"] .breadcrumbs-wrap,
body[data-page="product-detail"] .breadcrumbs-wrap {
  margin-top: 0;
  margin-bottom: 1.2rem;
  padding: 0.7rem 1rem;
}

body[data-page="offer-list"] main > .section {
  padding-top: 1.4rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.breadcrumbs li + li::before {
  content: "/";
  color: #8ca2ba;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--text-strong);
}

.detail-media-stack,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.detail-main-image {
  min-height: 360px;
}

.detail-main-image .product-image-frame {
  min-height: 100%;
  padding: 1.6rem;
}

.detail-main-image .product-figure-image {
  max-height: 420px;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid .product-media {
  min-height: 150px;
  border-bottom: 0;
  border-radius: var(--radius-md);
}

.gallery-grid .product-image-frame {
  min-height: 100%;
}

.gallery-grid .product-figure-image {
  max-height: 180px;
}

.detail-sections-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
}

body[data-page="category-detail"] .detail-sections-grid {
  grid-template-columns: 1fr;
}

.detail-section h2 {
  font-size: 1.62rem;
}

.detail-section + .detail-section {
  margin-top: 1.25rem;
}

.category-products-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.category-groups,
.category-group-grid {
  display: grid;
  gap: 1.25rem;
}

.category-group + .category-group {
  margin-top: 1.25rem;
}

.category-group-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.category-group-head .eyebrow {
  margin-bottom: 0.55rem;
}

.category-group-head h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.1;
  color: var(--text-strong);
}

.category-group-head p:last-child {
  margin: 0.6rem 0 0;
  max-width: 58ch;
  color: var(--muted);
}

body[data-page="category-detail"] .detail-sections-grid {
  grid-template-columns: 1fr;
}

body[data-page="category-detail"] .detail-sections-grid > div {
  min-width: 0;
}

body[data-page="category-detail"] [data-category-products].catalog-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: stretch;
}

body[data-page="category-detail"] .category-group-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: stretch;
}

body[data-page="category-detail"] .inquiry-panel {
  position: static;
}

.category-products-count {
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.empty-state-panel {
  grid-column: 1 / -1;
  padding: 1.6rem;
  border: 1px dashed rgba(121, 146, 178, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 252, 0.9));
}

.empty-state-panel h2 {
  margin: 0 0 0.75rem;
  color: var(--text-strong);
}

.empty-state-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.detail-copy-block {
  display: grid;
  gap: 1rem;
}

.detail-copy-block p + p {
  margin-top: 0.2rem;
}

.inquiry-panel {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 6.5rem;
}

.inquiry-panel h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-strong);
}

.section-contact {
  padding-bottom: 5rem;
}

.site-footer {
  margin-top: 1rem;
  padding: 1.5rem 0 2.4rem;
  border-top: 1px solid rgba(160, 182, 208, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(245, 249, 253, 0.86));
}

.footer-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
}

.footer-wrap-detailed {
  grid-template-columns: minmax(150px, auto) minmax(180px, 1fr) minmax(190px, 1fr) auto;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo-image {
  display: block;
  width: auto;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(54, 88, 124, 0.06));
}

.footer-copy {
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
}

.footer-copy p,
.footer-copy span {
  margin: 0;
  line-height: 1.6;
}

.footer-copy p {
  color: var(--text-strong);
  font-weight: 700;
}

.footer-company,
.footer-contact {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.footer-company strong,
.footer-contact strong {
  color: var(--text-strong);
  font-weight: 700;
}

.footer-contact a {
  color: var(--muted-strong);
  font-weight: 600;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--text-strong);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-links {
  display: grid;
  justify-content: start;
  gap: 0.35rem;
}

.footer-links strong {
  color: var(--text-strong);
  font-weight: 700;
}

.footer-nav a {
  color: var(--muted-strong);
  font-weight: 600;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text-strong);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
}

.contact-copy {
  padding: 1rem 0;
}

.contact-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-points a {
  color: var(--accent-strong);
  font-weight: 600;
}

.contact-points a:hover,
.contact-points a:focus-visible {
  color: var(--text-strong);
}

.contact-address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-card label {
  display: grid;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--text-strong);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 0.98rem 1rem;
  color: var(--text-strong);
  border: 1px solid rgba(121, 146, 178, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(250, 252, 254, 0.95);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(61, 120, 180, 0.52);
  box-shadow: 0 0 0 4px rgba(61, 120, 180, 0.1);
  background: #ffffff;
}

@media (max-width: 1100px) {
  .preview-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .page-hero-grid,
  .detail-hero-grid,
  .contact-grid,
  .cards-grid,
  .about-grid,
  .detail-sections-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-panel {
    position: static;
  }

  .category-group-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --hero-background-image: image-set(
      url("/background-1280.webp") type("image/webp"),
      url("/background.png") type("image/png")
    );
  }

  .cookie-consent {
    right: 0.6rem;
    bottom: 0.6rem;
    left: 0.6rem;
  }

  .cookie-consent-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 1.2rem);
    overflow: auto;
    padding: 0.9rem;
    border-radius: 1.15rem;
  }

  .cookie-consent-settings {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .cookie-consent-actions .button {
    width: 100%;
    white-space: normal;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
    border: 1px solid rgba(160, 182, 208, 0.22);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 38px rgba(70, 102, 139, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a[aria-current="page"] {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .nav-offer-item {
    display: grid;
    gap: 0.6rem;
    align-items: stretch;
  }

  .nav-offer-link::after {
    margin-left: 0.5rem;
  }

  .nav-offer-dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-offer-item:hover .nav-offer-dropdown,
  .nav-offer-item:focus-within .nav-offer-dropdown {
    transform: none;
  }

  .nav-offer-panel {
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: none;
  }

  .nav-offer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav .nav-offer-category {
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero,
  .page-hero {
    padding-top: 3.7rem;
  }

  body[data-page="home"] .hero {
    min-height: auto;
    padding-top: 1.2rem;
    padding-bottom: 1.8rem;
  }

  body[data-page="offer-list"] .page-hero,
  body[data-page="category-detail"] .page-hero,
  body[data-page="product-detail"] .page-hero {
    padding-top: 1rem;
  }

  .hero {
    background-position: 64% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 250, 252, 0.24) 0%, rgba(247, 250, 252, 0.08) 100%),
      linear-gradient(90deg, rgba(247, 250, 252, 0.86) 0%, rgba(247, 250, 252, 0.52) 58%, rgba(247, 250, 252, 0.2) 100%);
  }

  .hero h1,
  .page-hero h1,
  .detail-copy h1 {
    max-width: 100%;
  }

  .hero-stats,
  .preview-grid,
  .catalog-grid,
  .gallery-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card .product-figure-image,
  .product-card .product-figure-image,
  .detail-main-image .product-figure-image,
  .gallery-grid .product-figure-image {
    width: auto;
    height: auto;
    max-height: var(--product-image-max-height, 100%);
  }

  .detail-main-image {
    --product-image-max-height: 220px;
  }

  .section-heading-split {
    align-items: start;
  }

  .section-offer-preview .section-heading-split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-offer-preview .button-offer-cta.desktop-inline {
    justify-self: start;
    margin-top: 0;
    margin-left: 0;
  }

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

  .offer-info-card {
    height: auto;
  }

  .desktop-inline {
    display: none;
  }

  .mobile-only {
    display: flex;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .hero-card,
  .panel,
  .service-card,
  .contact-card,
  .category-card,
  .product-card,
  .offer-intro,
  .detail-media,
  .detail-section,
  .inquiry-panel,
  .breadcrumbs-wrap {
    border-radius: 1.15rem;
  }

  .hero-card,
  .panel,
  .service-card,
  .contact-card,
  .category-card-body,
  .offer-intro,
  .detail-media,
  .detail-section,
  .inquiry-panel {
    padding: 1.2rem;
  }

  .hero-actions,
  .page-actions,
  .detail-actions,
  .section-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .button-offer-cta {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    margin-top: 1.1rem;
    margin-left: 0;
    padding-right: 1.45rem;
    padding-left: 1.45rem;
  }

  .offer-info-panel {
    margin-top: 2rem;
    padding: 1.2rem;
  }

  .offer-info-card {
    padding: 1rem;
  }

  .product-media {
    --product-image-max-height: calc(var(--product-media-height-mobile) - 3.4rem);
    height: var(--product-media-height-mobile);
    min-height: var(--product-media-height-mobile);
    padding: 0.85rem;
  }

  .product-image-frame,
  .product-card .product-image-frame {
    padding: 0.85rem;
  }

  .detail-main-image {
    min-height: 260px;
  }

  .logo-image {
    height: 38px;
  }

  .footer-logo-image {
    height: 28px;
  }
}
