@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Nunito:wght@400;500;600;700&display=swap");

:root {
  /* Logo banner gradyan paleti */
  --brand-teal: #3d5c58;
  --brand: #528d7b;
  --brand-deep: #3d5c58;
  --brand-light: #97bcb4;
  --brand-beige: #b8a48b;
  --brand-beige-light: #d4c4ad;
  --brand-soft: #eef3f1;
  --bg: #f7f4ef;
  --bg-soft: #f0ebe4;
  --card: #ffffff;
  --text: #2f3d3a;
  --muted: #6b7d78;
  --line: rgba(61, 92, 88, 0.14);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(61, 92, 88, 0.12);
  --header-height: 120px;
  --logo-height: 100px;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: min(1180px, calc(100% - 32px));
  --brand-gradient: linear-gradient(
    102deg,
    #eef5f3 0%,
    #b8d4ce 28%,
    #7aa89f 52%,
    #4f7f76 76%,
    #3d5c58 100%
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: url("assets/bg-balloons.svg") center center / cover no-repeat;
}

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--brand-gradient);
  background-attachment: fixed;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 300;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: var(--brand-deep);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  overflow: visible;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.45) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 38%,
    rgba(61, 92, 88, 0.03) 100%
  );
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.promo-bar {
  background: linear-gradient(90deg, var(--brand-teal), var(--brand));
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  position: relative;
  z-index: 51;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-surface {
  position: relative;
  overflow: visible;
  background: var(--brand-gradient);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: box-shadow 0.35s ease;
}

.header-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
}

.header-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%, rgba(0, 0, 0, 0.04));
}

.site-header.is-scrolled .header-surface {
  box-shadow: 0 10px 30px rgba(61, 92, 88, 0.22);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 16px;
  padding: 18px 0;
  position: relative;
  z-index: 1;
  transition: min-height 0.35s ease, padding 0.35s ease;
}

.site-header.is-scrolled .nav-bar {
  min-height: 72px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: var(--logo-height);
  width: auto;
  max-width: 340px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  filter:
    drop-shadow(0 0.5px 0 rgba(255, 255, 255, 0.4))
    drop-shadow(0 1px 0 rgba(61, 92, 88, 0.28))
    drop-shadow(0 3px 8px rgba(45, 70, 66, 0.22))
    drop-shadow(0 8px 18px rgba(45, 70, 66, 0.14));
  transition: height 0.35s ease, max-width 0.35s ease, filter 0.35s ease;
}

.site-header.is-scrolled .brand-logo {
  height: 58px;
  max-width: 210px;
}

.promo-bar span + span::before {
  content: " · ";
  opacity: 0.7;
}

.site-header .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.site-header .icon-link {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-header .icon-link:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.site-header .icon-link.cart-link.active {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.site-header .button-primary {
  background: #fff;
  color: var(--brand-teal);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.site-header .button-primary:hover {
  background: #fff;
  color: var(--brand);
}

.site-header .menu-toggle {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.brand-mark {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover,
.nav-dropdown.open {
  z-index: 110;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 110;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-dropdown-menu a:hover {
  background: var(--brand-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: var(--card);
  transition: 0.2s ease;
  color: var(--brand-deep);
}

.icon-link:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.icon-link svg {
  width: 18px;
  height: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: #fff;
  box-shadow: 0 10px 24px rgba(82, 141, 123, 0.32);
}

.button-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.button-secondary {
  background: var(--card);
  border-color: var(--line);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--brand-deep);
}

.hero {
  padding: 48px 0 64px;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 300px;
  height: min(max(300px, 56.25vw), 78vh);
  overflow: hidden;
  background: var(--brand-gradient);
  transition: height 0.35s ease;
  touch-action: pan-y pinch-zoom;
}

@media (min-width: 769px) {
  .hero-slider {
    height: min(720px, 70vh);
    min-height: 600px;
  }

  .hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.1);
    transform-origin: center center;
  }
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  background: transparent;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(45, 70, 66, 0.82) 0%,
    rgba(45, 70, 66, 0.45) 38%,
    rgba(45, 70, 66, 0.08) 62%,
    rgba(45, 70, 66, 0.08) 100%
  );
  pointer-events: none;
}

.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 560px;
  padding: 40px 0;
  color: #fff;
}

.hero-slide-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-slide-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 12px;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.hero-slide-content p {
  margin: 0 0 22px;
  font-size: 1rem;
  opacity: 0.92;
  max-width: 480px;
}

.hero-slide-content .button-primary {
  background: #fff;
  color: var(--brand-teal);
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-slider-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-slider-prev {
  left: 16px;
}

.hero-slider-next {
  right: 16px;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: 0.2s ease;
}

.hero-slider-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.product-custom-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

.product-options-wrap {
  margin: 12px 0 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

.product-options-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 0 0 10px;
}

.product-option-toggles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.product-opt-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.product-opt-toggle input {
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
}

.product-bed-type {
  margin: 10px 0;
}

.product-bed-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 10px;
  font-size: 0.86rem;
  font-weight: 600;
}

.product-bed-radios label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.product-field {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.product-field input,
.product-field textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  background: #fff;
  resize: vertical;
}

.product-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.product-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
}

.cart-item-extra {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--brand-deep);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .hero-slider {
    height: min(max(280px, 62vw), 72vh);
  }

  .hero-slide-content {
    padding: 24px 0;
    max-width: 100%;
  }

  .hero-slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 14px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge {
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-deep);
}

.hero-visual {
  position: relative;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-gallery-main {
  grid-row: span 2;
  min-height: 100%;
}

.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.hero-float {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  max-width: 220px;
  border: 1px solid var(--line);
}

.hero-float strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--brand-deep);
}

.hero-float span {
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 64px 0;
}

.section-soft {
  background: transparent;
}

.readable-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(61, 92, 88, 0.12);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  color: var(--text);
}

.readable-panel .eyebrow {
  color: var(--brand-deep);
}

.readable-panel h1,
.readable-panel h2,
.readable-panel h3 {
  color: var(--text);
  text-shadow: none;
}

.readable-panel p {
  color: var(--muted);
}

.hero-copy.readable-panel {
  max-width: 560px;
}

.page-hero .readable-panel {
  max-width: 720px;
  margin: 0 auto;
}

.section-head.readable-panel {
  max-width: 720px;
}

.story-copy.readable-panel {
  padding: 32px;
}

.story-copy.readable-panel p {
  color: var(--text);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

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

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.category-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.category-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.category-block-head h3 {
  font-size: 1.55rem;
  margin: 0;
}

.category-block-head p {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.category-block-head .button {
  flex-shrink: 0;
}

.category-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(82, 141, 123, 0.35);
}

.category-card::after {
  display: none;
}

.category-card img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.category-card-content {
  position: relative;
  z-index: 1;
  padding: 22px 20px 26px;
  color: var(--text);
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.category-card-content h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
  color: var(--text);
}

.category-card-content p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--muted);
  opacity: 1;
  flex: 1;
}

.category-card-content .button {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  border: none;
  color: #fff;
  padding: 11px 22px;
  font-size: 0.88rem;
  box-shadow: 0 8px 20px rgba(82, 141, 123, 0.25);
}

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

.product-catalog--grouped {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.product-subcategory {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.product-subcategory-title {
  margin: 0 0 20px;
  padding-bottom: 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--brand-deep);
  border-bottom: 1px solid var(--line);
}

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

.product-subcategory-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 20px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-list-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: 0.25s ease;
}

.product-list-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(104, 145, 136, 0.35);
}

.product-list-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-list-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--brand-soft);
}

.product-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-list-card:hover .product-list-image img {
  transform: scale(1.04);
}

.product-list-body {
  padding: 16px;
}

.product-list-body h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  min-height: auto;
}

.product-list-body p {
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-list-price {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 8px;
}

.product-list-cta {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.product-list-edit {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 12px;
  font-size: 0.75rem;
  box-shadow: var(--shadow);
}

body.is-edit-mode .product-list-card--editable {
  cursor: pointer;
  outline: 2px dashed rgba(61, 92, 88, 0.45);
  outline-offset: 4px;
}

body.is-edit-mode .product-list-card--editable .product-list-cta::after {
  content: " · Düzenle";
  color: var(--brand-deep);
}

body.is-edit-mode .product-detail--editable {
  cursor: pointer;
  outline: 2px dashed rgba(61, 92, 88, 0.45);
  outline-offset: 6px;
}

.product-edit-banner {
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(61, 92, 88, 0.12);
  color: var(--brand-deep);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.product-form-image {
  margin-bottom: 14px;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background: var(--brand-soft);
}

.product-form-file {
  display: block;
  margin-top: 10px;
}

.product-form-file span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 700;
}

.product-form-file input[type="file"] {
  width: 100%;
  font-size: 0.84rem;
}

.product-form-preview {
  margin-top: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.product-form-preview img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

[data-form-bedding-prices][hidden],
[data-form-single-price][hidden] {
  display: none !important;
}

.product-detail-page {
  padding-top: 32px;
}

.product-detail-page .product-detail {
  border-radius: var(--radius-xl);
}

.product-missing {
  text-align: center;
  padding: 48px 24px;
}

.product-missing h2 {
  margin-top: 0;
}

.product-opt-panel[hidden] {
  display: none !important;
}

.product-detail {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 28px 32px 36px;
  box-shadow: 0 12px 40px rgba(47, 61, 58, 0.08);
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.product-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.product-breadcrumb a:hover {
  color: var(--brand-deep);
}

.product-breadcrumb .bc-current {
  color: var(--text);
}

.product-breadcrumb .bc-sep {
  opacity: 0.45;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: start;
}

.product-gallery-main {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f3f3f3;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-gallery-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-gallery-main img,
.product-gallery-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-color-block {
  margin-bottom: 18px;
}

.product-color-gate {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.product-color-hint {
  margin: 0 0 10px;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.product-color-note {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--brand-deep);
}

.product-color-note strong {
  font-weight: 800;
}

.product-color-confirm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.product-color-confirm input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--brand-deep);
  cursor: pointer;
}

.product-color-picker {
  margin-top: 16px;
}

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

.product-color-scroll {
  max-height: 320px;
  overflow-y: auto;
  padding: 4px 8px 4px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.product-color-group {
  padding: 12px 14px 8px;
  border-bottom: 1px solid var(--line);
}

.product-color-group:last-child {
  border-bottom: none;
}

.product-color-group h4 {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.product-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
}

.product-color-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.product-color-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 8px 6px;
  border: 1px solid #b8b8b8;
  background: #fff;
  cursor: pointer;
  transition: 0.2s ease;
  font-family: inherit;
}

.product-color-pill:hover {
  border-color: var(--brand-deep);
}

.product-color-pill.is-active {
  border-color: var(--brand-deep);
  box-shadow: inset 0 0 0 1px var(--brand-deep);
  background: var(--brand-soft);
}

.product-color-swatch {
  width: 100%;
  height: 28px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.product-color-swatch--original {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
}

.product-color-name {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #444;
  line-height: 1.2;
  text-align: center;
}

.product-color-selected-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--brand-soft);
}

.product-color-selected-swatch {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.product-color-selected {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.product-color-selected strong {
  color: var(--brand-deep);
}

.product-gallery-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(184, 52, 47, 0.92);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(184, 52, 47, 0.35);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.product-thumb {
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  background: #f3f3f3;
  cursor: pointer;
  overflow: hidden;
}

.product-thumb.is-active {
  border-color: var(--brand-deep);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-buybox {
  padding-top: 4px;
}

.product-edit-inline {
  margin-bottom: 16px;
  font-size: 0.82rem;
  padding: 8px 14px;
}

.product-detail-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #1f1f1f;
}

.product-detail-desc {
  margin: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
}

.product-detail-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-price-value {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #4a4a4a;
}

.product-detail-price small {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.product-field-lux {
  display: block;
  margin-bottom: 18px;
}

.product-field-lux > span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2f2f2f;
}

.product-field-lux select,
.product-field-lux input,
.product-field-lux textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  background: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
}

.product-field-lux textarea {
  resize: vertical;
  min-height: 88px;
}

.product-size-block {
  margin-bottom: 8px;
}

.product-size-heading {
  display: block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #2f2f2f;
}

.product-size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-size-pill {
  min-width: 74px;
  padding: 11px 14px;
  border: 1px solid #b8b8b8;
  background: #fff;
  color: #333;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.product-size-pill:hover {
  border-color: var(--brand-deep);
}

.product-size-pill.is-active {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  color: #fff;
}

.product-extras {
  margin: 8px 0 4px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}

.product-extras-head {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.product-extras-head span {
  font-weight: 600;
  color: var(--muted);
  text-transform: none;
}

.product-extras-toggles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.product-extra-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.product-extra-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--brand-deep);
}

.product-addon-price {
  color: var(--brand);
  font-weight: 700;
  white-space: nowrap;
}

.product-pike-addons [data-pike-name-wrap] {
  margin: 4px 0 8px 24px;
}

[data-pike-addon-group][hidden] {
  display: none !important;
}

.product-pike-addon-title {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-extras-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-hastane-set-options {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.product-hastane-set-option {
  align-items: flex-start;
}

.product-hastane-addons {
  margin-bottom: 14px;
}

.product-hastane-trim {
  margin-top: 4px;
}

.product-pike-info {
  margin: 14px 0 6px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(61, 92, 88, 0.04);
}

.product-pike-info-title {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.product-pike-info-list {
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text);
}

.product-pike-info-note {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
}

.product-fitted-sheet-block {
  margin: 14px 0 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
}

.product-fitted-sheet-lead {
  margin: 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text);
}

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

.product-fitted-sheet-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
}

.product-fitted-sheet-label {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.product-fitted-sheet-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  font: inherit;
  text-align: center;
}

.product-fitted-sheet-field input:focus {
  outline: 2px solid rgba(82, 141, 123, 0.35);
  border-color: var(--brand);
}

.product-fitted-sheet-optional {
  margin: 12px 0 0;
  font-size: 0.82rem;
  text-align: right;
}

.product-fitted-sheet-optional span {
  font-weight: 600;
  color: var(--muted);
}

@media (max-width: 640px) {
  .product-fitted-sheet-grid {
    grid-template-columns: 1fr;
  }
}

.product-pike-addons {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.pike-pricing-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.pike-pricing-card {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.pike-pricing-card h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.pike-pricing-base {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.pike-pricing-base small {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.pike-pricing-card ul {
  margin: 0 0 12px;
  padding-left: 18px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.pike-pricing-addons {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

.pike-pricing-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

.product-buy-row {
  display: grid;
  grid-template-columns: 84px 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.product-qty-wrap select,
.product-qty-select {
  width: 100%;
  height: 100%;
  min-height: 50px;
  padding: 0 12px;
  border: 1px solid #c8c8c8;
  background: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
}

.product-btn {
  min-height: 50px;
  padding: 14px 16px;
  border: none;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.product-btn-cart {
  background: var(--brand-deep);
  color: #fff;
}

.product-btn-cart:hover {
  background: #2f4844;
}

.product-btn-buy {
  background: var(--brand-beige);
  color: #fff;
}

.product-btn-buy:hover {
  background: #a89278;
}

.product-util-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-util-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 8px;
  background: #fff;
  color: #333;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

.product-util-grid a:hover {
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-grid-home {
  grid-template-columns: repeat(3, 1fr);
}

.product-price {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-deep);
  margin: 10px 0 12px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(104, 145, 136, 0.35);
}

.product-image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--brand-soft);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.04);
}

.product-body {
  padding: 16px;
}

.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 6px;
}

.product-body h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  min-height: 2.4em;
}

.product-body p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

.product-body .button {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.85rem;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.product-actions .button {
  width: 100%;
  padding: 10px 8px;
  font-size: 0.8rem;
}

.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-deep);
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cart-badge:empty,
.cart-badge[data-empty="true"] {
  display: none;
}

.cart-page-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
}

.cart-section {
  padding-top: 36px;
  background: var(--bg);
}

.cart-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.cart-hero-text {
  position: relative;
  overflow: hidden;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(118deg, #f8fbfa 0%, #eef5f3 52%, #e6eeeb 100%);
  border: 1px solid rgba(61, 92, 88, 0.1);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.cart-hero-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 100% 100%, rgba(151, 188, 180, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(255, 255, 255, 0.85) 0%, transparent 70%);
  pointer-events: none;
}

.cart-hero-text::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  opacity: 0.45;
  pointer-events: none;
}

.cart-hero-deco {
  position: absolute;
  right: 28px;
  bottom: 8px;
  width: 72px;
  height: 90px;
  color: var(--brand);
  pointer-events: none;
  z-index: 0;
}

.cart-hero-text .eyebrow,
.cart-hero-text h1,
.cart-hero-text p {
  position: relative;
  z-index: 1;
}

.cart-hero-text .eyebrow {
  color: var(--brand-deep);
}

.cart-hero-text h1 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  color: var(--brand-deep);
  line-height: 1.15;
}

.cart-hero-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 42ch;
}

.wash-care-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(61, 92, 88, 0.16);
  box-shadow: 0 12px 32px rgba(61, 92, 88, 0.1);
}

.wash-care-card::before,
.wash-care-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.35;
}

.wash-care-card::before {
  width: 120px;
  height: 120px;
  top: -36px;
  left: -28px;
  background: radial-gradient(circle, rgba(151, 188, 180, 0.55) 0%, transparent 70%);
}

.wash-care-card::after {
  width: 140px;
  height: 140px;
  right: -40px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(82, 141, 123, 0.4) 0%, transparent 70%);
}

.wash-care-card__header {
  position: relative;
  z-index: 1;
  margin: 14px 14px 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wash-care-card__body {
  position: relative;
  z-index: 1;
  padding: 14px 16px 18px;
}

.wash-care-card__intro {
  margin: 0 0 12px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text);
}

.wash-care-card__intro strong {
  color: var(--brand-deep);
}

.wash-care-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.wash-care-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text);
}

.wash-care-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  box-shadow: 0 0 0 2px rgba(82, 141, 123, 0.18);
}

.wash-care-card__list strong {
  color: var(--brand-deep);
  font-weight: 700;
}

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

.cart-empty-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  color: var(--brand-deep);
}

.cart-empty p {
  margin: 0 0 20px;
  line-height: 1.6;
}

.cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 12px 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-thumb {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--brand-soft);
  border: 1px solid var(--line);
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-info strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.cart-item-info span {
  font-size: 0.85rem;
  color: var(--muted);
}

.cart-item-price {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.cart-qty button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 700;
}

.cart-qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
}

.cart-remove {
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.cart-summary {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary strong {
  font-size: 1.05rem;
  color: var(--text);
}

.cart-total-price {
  font-size: 1.2rem;
  color: var(--brand-deep);
}

.cart-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cart-page-card.is-checkout .cart-item {
  opacity: 0.92;
}

.cart-order-form-wrap {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.cart-order-success {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.cart-order-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--brand-deep);
}

.cart-order-lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.cart-order-number {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(61, 92, 88, 0.08);
  border: 1px dashed rgba(61, 92, 88, 0.25);
  color: var(--brand-deep);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cart-order-number strong {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.cart-order-number-hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.payment-order-number {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(61, 92, 88, 0.08);
  border: 1px dashed rgba(61, 92, 88, 0.25);
  color: var(--brand-deep);
  font-size: 0.94rem;
}

.payment-order-number strong {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.cart-order-form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brand-deep);
  margin-bottom: 6px;
}

.cart-order-optional {
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.cart-order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-bottom: 14px;
}

.cart-order-grid-full {
  grid-column: 1 / -1;
}

.payment-dekont-form {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.payment-dekont-form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brand-deep);
}

.payment-dekont-form input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(61, 92, 88, 0.2);
  border-radius: 10px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.payment-dekont-form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(61, 92, 88, 0.12);
}

.cart-order-form input,
.cart-order-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-top: 6px;
  background: var(--bg-soft);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.cart-order-form textarea {
  min-height: 110px;
  resize: vertical;
}

.cart-order-form input:focus,
.cart-order-form textarea:focus {
  outline: none;
  border-color: rgba(82, 141, 123, 0.55);
  box-shadow: 0 0 0 3px rgba(82, 141, 123, 0.12);
}

.cart-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-image--logo {
  background: var(--card);
  padding: 20px;
}

.story-image--logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.story-copy h2 {
  color: var(--brand-deep);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}

.story-copy p {
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.75;
  font-weight: 500;
}

.story-copy p a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.story-copy p a:hover {
  color: var(--brand);
}

.story-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.story-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--brand-deep);
  font-size: 0.98rem;
}

.story-list li::before {
  content: "✦ ";
  color: var(--brand);
}

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

.instagram-grid--screenshots {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.instagram-grid--screenshots .insta-item {
  aspect-ratio: 9 / 16;
}

.instagram-grid--screenshots .insta-item img {
  object-fit: contain;
  background: #f7f3ef;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-item:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(82, 141, 123, 0.18);
}

.insta-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(45, 70, 66, 0.82));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.sizden-panel {
  padding: 28px;
}

.sizden-section-head {
  margin-bottom: 24px;
}

.sizden-section-head h2 {
  margin: 0 0 8px;
}

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

.satisfaction-block {
  margin-bottom: 28px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.satisfaction-lead {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.satisfaction-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.satisfaction-stat {
  text-align: center;
  padding: 16px 12px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--line);
}

.satisfaction-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--brand-deep);
  margin-bottom: 4px;
}

.satisfaction-stat span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testimonial-card {
  margin: 0;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--line);
}

.testimonial-stars {
  color: #c9a87c;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.testimonial-quote {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.6;
  font-style: normal;
}

.testimonial-name {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--brand-deep);
  font-size: 0.88rem;
}

.sizden-gallery-head {
  margin-bottom: 16px;
}

.sizden-gallery-head h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.sizden-gallery-head p {
  margin: 0;
  color: var(--muted);
}

.sizden-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.trust-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--brand-deep);
}

.trust-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: 48px 0 32px;
  text-align: center;
  background: transparent;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

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

.contact-card,
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-deep);
}

.contact-list a {
  color: var(--text);
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--brand-deep);
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  background: var(--bg);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-page-channels {
  background: rgba(45, 70, 66, 0.92);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.contact-page-channels .footer-contact-block {
  padding-bottom: 0;
}

.contact-location {
  padding: 28px;
}

.contact-address-text {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  --map-ui-w: min(340px, 94%);
  --map-ui-h: 172px;
}

/* Sol üst Google bilgi kartı tıklanabilir; geri kalan harita sabit */
.contact-map-shield {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.contact-map-shield-panel {
  position: absolute;
  pointer-events: auto;
  touch-action: none;
  cursor: default;
}

.contact-map-shield-panel--right {
  top: 0;
  left: var(--map-ui-w);
  right: 0;
  bottom: 0;
}

.contact-map-shield-panel--bottom {
  left: 0;
  top: var(--map-ui-h);
  right: 0;
  bottom: 0;
}

.contact-map-fixed-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  transform: translate(calc(-50% + 4px), calc(-100% - 6px));
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: transform 0.15s ease;
}

.contact-map-fixed-marker:hover {
  transform: translate(calc(-50% + 4px), calc(-100% - 8px));
}

.contact-map-fixed-marker:focus-visible {
  outline: 2px solid var(--brand-deep);
  outline-offset: 4px;
}

.contact-map-fixed-pin {
  flex-shrink: 0;
  display: block;
  color: var(--brand-deep);
  filter: drop-shadow(0 2px 4px rgba(61, 92, 88, 0.35));
}

.contact-map-fixed-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(61, 92, 88, 0.22);
  box-shadow: 0 4px 14px rgba(45, 70, 66, 0.18);
  white-space: nowrap;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-map-fixed-marker:hover .contact-map-fixed-label {
  border-color: rgba(61, 92, 88, 0.45);
  box-shadow: 0 6px 18px rgba(45, 70, 66, 0.24);
}

.contact-map-fixed-label strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-deep);
  line-height: 1.15;
}

.contact-map-fixed-label > span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-map-hint {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-map {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.contact-map-link {
  margin-top: 16px;
}

.contact-actions {
  padding: 28px;
}

.contact-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.contact-action-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(61, 92, 88, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-action-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(82, 141, 123, 0.35);
  box-shadow: var(--shadow);
  color: var(--brand-deep);
}

.contact-action-btn--whatsapp {
  background: linear-gradient(180deg, #fff 0%, #f3faf7 100%);
}

.contact-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-action-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.contact-action-value {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.contact-address-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-address-bottom strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-deep);
}

.contact-address-bottom p {
  margin: 0;
  color: var(--muted);
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-payment-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.65fr);
  gap: 24px;
  align-items: start;
}

.contact-payment-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.payment-card-lead {
  margin: 0 0 16px;
  color: var(--muted);
}

.payment-iban-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.payment-iban-col {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
}

.payment-iban-col .iban-box {
  margin: 12px 0;
}

.payment-iban-col .button-block {
  width: 100%;
}

.payment-dekont-btn {
  margin-top: 18px;
}

.payment-card--iban-wide {
  grid-column: 1 / -1;
}

.payment-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

.payment-card h2,
.payment-card h3 {
  color: var(--text);
}

.payment-card p,
.payment-card li {
  color: var(--muted);
}

.payment-method {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.iban-box {
  margin: 18px 0;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--brand-soft);
  border: 1px dashed rgba(61, 92, 88, 0.28);
}

.iban-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 8px;
}

.iban-value {
  display: block;
  font-family: Consolas, "Courier New", monospace;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  word-break: break-all;
}

.payment-detail {
  margin: 10px 0;
  font-size: 0.95rem;
}

.payment-detail strong {
  color: var(--text);
}

.payment-steps {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.payment-steps li {
  margin-bottom: 10px;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%) translateY(12px);
  background: var(--brand-deep);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 80;
}

.copy-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-origin-warning {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 14px 18px;
  background: #8b1e1e;
  color: #fff;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.site-origin-warning a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
}

.site-footer {
  background: rgba(45, 70, 66, 0.92);
  color: rgba(255, 255, 255, 0.92);
  padding: 56px 0 24px;
  margin-top: 32px;
  backdrop-filter: blur(8px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer-brand .brand-logo {
  height: 56px;
  max-width: 300px;
  margin-bottom: 12px;
  border-radius: 0;
  background: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.22))
    drop-shadow(0 3px 8px rgba(0, 0, 0, 0.18));
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact-block {
  padding-bottom: 8px;
}

.footer-contact-eyebrow {
  display: inline-block;
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184, 212, 206, 0.95);
  margin-bottom: 10px;
}

.footer-contact-title {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #fff;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.footer-contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 212, 206, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-contact-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(184, 212, 206, 0.38);
  color: #fff;
}

.footer-contact-card--whatsapp:hover {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(151, 230, 177, 0.45);
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(184, 212, 206, 0.16);
  color: #eef5f3;
}

.footer-contact-icon svg {
  width: 22px;
  height: 22px;
}

.footer-contact-label {
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184, 212, 206, 0.88);
}

.footer-contact-value {
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
}

.footer-contact-address {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(184, 212, 206, 0.18);
}

.footer-contact-address strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.footer-contact-address p {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: rgba(238, 245, 243, 0.82);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: #fff;
}

.admin-access-btn {
  padding: 8px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.footer-admin-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.82rem;
  margin-left: auto;
}

.footer-admin-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.mobile-admin-link {
  padding-top: 12px !important;
  color: var(--brand-deep) !important;
  font-weight: 700;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s ease;
  z-index: 40;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 41;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  transition: 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(47, 61, 58, 0.35);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  height: 100dvh;
  background: #f7f4ef;
  padding: max(24px, env(safe-area-inset-top)) 24px max(24px, env(safe-area-inset-bottom));
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-nav-close {
  align-self: flex-start;
  flex-shrink: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-top: 4px;
  padding-bottom: 24px;
}

.mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.mobile-nav-group-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 14px 8px;
}

.mobile-nav-group--categories a {
  padding-left: 22px;
}

.mobile-nav-group--social {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.mobile-nav-group--admin {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.mobile-nav-links a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text);
}

.mobile-nav-links a.is-active {
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.mobile-nav-links a:hover {
  background: var(--brand-soft);
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

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

@media (max-width: 980px) {
  .nav-links,
  .header-actions .button:not(.admin-access-btn) {
    display: none;
  }

  .header-actions .admin-access-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    font-size: 0;
    flex-shrink: 0;
  }

  .menu-toggle::before {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
  }

  .nav-bar {
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 96px);
  }

  .header-actions {
    flex-shrink: 0;
  }

  .hero-grid,
  .story-grid,
  .contact-grid,
  .footer-grid,
  .payment-grid,
  .contact-payment-layout,
  .payment-iban-row {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    min-height: 320px;
  }

  .hero-gallery-main {
    grid-row: span 1;
  }

  .contact-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-catalog {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-subcategory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail {
    padding: 20px 18px 28px;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-buy-row {
    grid-template-columns: 72px 1fr;
  }

  .product-btn-buy {
    grid-column: 1 / -1;
  }

  .product-util-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid--screenshots {
    grid-template-columns: repeat(2, 1fr);
  }

  .satisfaction-summary {
    grid-template-columns: 1fr;
  }

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

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

  .brand-logo {
    height: 56px;
    max-width: 100%;
  }

  .site-header.is-scrolled .brand-logo {
    height: 42px;
    max-width: 100%;
  }

  .nav-bar {
    min-height: 96px;
    padding: 14px 0;
  }

  .site-header.is-scrolled .nav-bar {
    min-height: 64px;
    padding: 8px 0;
  }
}

@media (max-width: 560px) {
  .product-grid,
  .product-catalog,
  .product-subcategory-grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 72px 1fr;
  }

  .cart-remove {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
  }

  .cart-actions-row,
  .cart-order-actions {
    flex-direction: column;
  }

  .cart-actions-row .button,
  .cart-order-actions .button {
    width: 100%;
    justify-content: center;
  }

  .cart-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .payment-dekont-btn {
    width: 100%;
    justify-content: center;
  }

  .sizden-actions {
    flex-direction: column;
  }

  .sizden-actions .button {
    width: 100%;
    justify-content: center;
  }

  .cart-hero-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cart-hero-text {
    padding: 22px 20px;
  }

  .cart-hero-deco {
    width: 56px;
    height: 70px;
    right: 16px;
    bottom: 6px;
    opacity: 0.85;
  }

  .wash-care-card__list li {
    font-size: 0.8rem;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-buy-row {
    grid-template-columns: 1fr;
  }

  .product-btn-cart,
  .product-btn-buy {
    grid-column: auto;
  }

  .promo-bar span {
    display: block;
  }

  .promo-bar span + span::before {
    content: "";
  }
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px 20px;
}

.admin-toolbar .button.is-active,
[data-product-edit-mode].is-active {
  background: var(--brand-deep);
  color: #fff;
  border-color: var(--brand-deep);
}

.product-size-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin: 10px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-size-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 4px;
}

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

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(47, 61, 58, 0.45);
  display: grid;
  place-items: center;
  padding: 20px;
}

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

.product-modal-panel {
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.product-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.product-modal-head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.product-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.product-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.product-form input,
.product-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
}

.product-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.5;
}

.product-form-note--image code {
  font-size: 0.92em;
  color: var(--text);
}

.product-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-delete-btn {
  margin-left: auto;
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.3);
}

@media (max-width: 560px) {
  .product-form-row {
    grid-template-columns: 1fr;
  }
}

.admin-page {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--brand-soft) 0%, #fff 45%, var(--brand-soft) 100%);
}

@media (max-width: 720px) {
  .admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table {
    min-width: 520px;
  }

  .admin-top-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-top-actions .button {
    width: 100%;
    justify-content: center;
  }

  .product-modal-panel {
    max-height: 92vh;
    overflow-y: auto;
  }

  .product-form-file input[type="file"] {
    font-size: 1rem;
  }
}

.admin-login-wrap {
  max-width: 440px;
  margin: 48px auto 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.admin-login-card {
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.admin-login-logo {
  width: auto;
  height: 88px;
  max-width: min(320px, 88vw);
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  margin-bottom: 16px;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35))
    drop-shadow(0 4px 12px rgba(45, 70, 66, 0.18));
}

.admin-login-card h1 {
  margin: 8px 0 10px;
  font-size: 1.6rem;
}

.admin-login-card p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 0.92rem;
}

.admin-login-form label {
  display: block;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 600;
}

.admin-login-form input {
  display: block;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
}

.admin-login-error {
  color: #b42318;
  font-size: 0.86rem;
  margin: -8px 0 12px;
}

.admin-back-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--brand-deep);
  font-size: 0.9rem;
  text-decoration: none;
}

.admin-back-link:hover {
  text-decoration: underline;
}

.admin-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
}

.admin-top h1 {
  margin: 8px 0 6px;
}

.admin-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-toolbar label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}

.admin-toolbar select {
  display: block;
  min-width: 220px;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  background: #fff;
}

.admin-table-wrap {
  padding: 0;
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  font-size: 0.9rem;
}

.admin-table th {
  background: var(--brand-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.admin-product-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.admin-product-id {
  font-size: 0.78rem;
  color: var(--muted);
}

.admin-product-subcategory {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--brand);
}

.admin-actions {
  white-space: nowrap;
}

.admin-actions .button {
  padding: 8px 12px;
  font-size: 0.82rem;
}

.admin-empty {
  text-align: center;
  color: var(--muted);
  padding: 32px 16px !important;
}

.admin-sizden-section {
  margin-top: 28px;
  padding: 24px;
}

.admin-sizden-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-sizden-head h2 {
  margin: 6px 0 8px;
  font-size: 1.35rem;
}

.admin-sizden-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-sizden-list {
  display: grid;
  gap: 14px;
}

.admin-sizden-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.admin-sizden-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.admin-sizden-info strong {
  display: block;
  margin-bottom: 4px;
}

.admin-sizden-name {
  display: block;
  font-size: 0.82rem;
  color: var(--brand);
  margin-bottom: 6px;
}

.admin-sizden-quote {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.admin-sizden-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-sizden-actions .button {
  padding: 8px 12px;
  font-size: 0.82rem;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .admin-sizden-head {
    flex-direction: column;
  }

  .admin-sizden-card {
    grid-template-columns: 56px 1fr;
  }

  .admin-sizden-actions {
    grid-column: 1 / -1;
    flex-direction: row;
  }
}

@media (max-width: 760px) {
  .admin-top {
    padding: 22px 20px;
  }

  .admin-table-wrap {
    overflow-x: auto;
  }

  .admin-table {
    min-width: 640px;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(1180px, calc(100% - 24px));
  }

  .section {
    padding: 48px 0;
  }

  .readable-panel {
    padding: 22px 18px;
  }

  .page-hero .readable-panel {
    padding: 24px 18px;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .hero-slide-content h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.35rem);
  }

  .hero-slide-content p {
    font-size: 0.92rem;
    max-width: 100%;
  }

  .hero-slide-content .button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-slide-overlay {
    background: linear-gradient(180deg, rgba(45, 70, 66, 0.78) 0%, rgba(45, 70, 66, 0.42) 100%);
  }

  .product-detail-title {
    font-size: clamp(1.55rem, 5vw, 2rem);
  }

  .product-detail-desc {
    font-size: 0.92rem;
  }

  .product-color-gate {
    padding: 14px;
  }

  .product-color-note {
    font-size: 0.84rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-admin-link {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(1180px, calc(100% - 20px));
    --header-height: 88px;
    --logo-height: 62px;
  }

  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .promo-bar {
    font-size: 0.72rem;
    line-height: 1.45;
    padding: 8px 10px;
  }

  .header-actions {
    gap: 6px;
  }

  .brand {
    max-width: calc(100% - 88px);
  }

  .brand-logo {
    height: 46px;
  }

  .site-header.is-scrolled .brand-logo {
    height: 38px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .icon-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .section {
    padding: 36px 0;
  }

  .readable-panel {
    padding: 18px 14px;
    border-radius: var(--radius-lg);
  }

  .hero-slider {
    height: min(max(260px, 68vw), 70vh);
  }

  .hero-slide-content {
    padding: 18px 0 28px;
    justify-content: flex-end;
  }

  .hero-slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.22);
  }

  .hero-slider-prev {
    left: 8px;
  }

  .hero-slider-next {
    right: 8px;
  }

  .hero-slider-dots {
    bottom: 12px;
  }

  .category-card-body {
    padding: 16px;
  }

  .product-list-body {
    padding: 14px;
  }

  .product-detail {
    padding: 14px 12px 20px;
    border-radius: var(--radius-md);
  }

  .product-breadcrumb {
    font-size: 0.62rem;
    gap: 6px;
  }

  .product-gallery-main {
    aspect-ratio: 1 / 1;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .product-size-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .product-size-pills::-webkit-scrollbar {
    display: none;
  }

  .product-size-pill {
    flex: 0 0 auto;
    min-width: 68px;
  }

  .product-color-scroll {
    max-height: 220px;
  }

  .product-color-grid {
    grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
    gap: 6px;
  }

  .product-color-name {
    font-size: 0.52rem;
  }

  .product-color-confirm {
    font-size: 0.84rem;
  }

  .product-btn {
    min-height: 46px;
    font-size: 0.78rem;
  }

  .product-buy-row {
    gap: 10px;
  }

  .cart-item {
    grid-template-columns: 72px 1fr auto;
    gap: 10px 12px;
  }

  .cart-item-thumb {
    width: 72px;
    height: 72px;
  }

  .cart-item-price {
    text-align: left;
  }

  .cart-actions-row {
    flex-direction: column;
  }

  .cart-actions-row .button {
    width: 100%;
  }

  .cart-order-grid {
    grid-template-columns: 1fr;
  }

  .cart-order-actions .button {
    width: 100%;
  }

  .contact-grid,
  .contact-actions-grid,
  .payment-grid,
  .contact-payment-layout,
  .contact-payment-stack {
    gap: 16px;
  }

  .contact-actions-grid {
    grid-template-columns: 1fr;
  }

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

  .wa-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .scroll-top {
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(max(18px, env(safe-area-inset-bottom)) + 64px);
    width: 42px;
    height: 42px;
  }

  .mobile-nav-panel {
    width: min(100%, 100vw);
    padding: max(20px, env(safe-area-inset-top)) 18px max(24px, env(safe-area-inset-bottom));
  }

  .product-modal-panel {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 18px 16px;
  }
}

/* Hoş geldiniz giriş modalı */
.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(47, 61, 58, 0.42);
  animation: welcome-fade-in 0.35s ease;
}

@keyframes welcome-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes welcome-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.welcome-modal-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 56px 40px 48px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(47, 61, 58, 0.18);
  text-align: center;
  animation: welcome-panel-in 0.4s ease 0.05s both;
}

.welcome-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #8a9490;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.welcome-modal-close:hover {
  color: var(--text);
  background: var(--brand-soft);
}

.welcome-modal-title {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.welcome-modal-title span {
  display: block;
}

.welcome-modal-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
}

.welcome-modal-balloon {
  width: 1.1em;
  height: 1.65em;
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .welcome-modal-panel {
    padding: 48px 24px 40px;
    border-radius: 24px;
  }

  .welcome-modal-title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }
}
