:root {
  --primary: #e4e4e4;
  --accent: #2f343a;
  --bg: #f5f5f5;
  --surface: #ffffff;
  --surface-alt: #eeeeee;
  --text: #1f1f1f;
  --muted: #5a5f66;
  --border: #d7dadd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI Variable", "Trebuchet MS", "Palatino Linotype", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% -10%, #ffffff 0%, transparent 42%),
    radial-gradient(circle at 90% 0%, #f0f1f3 0%, transparent 36%),
    linear-gradient(180deg, #f7f7f7 0%, #eeeeee 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.24;
  pointer-events: none;
  z-index: 0;
}

.ambient-1 {
  width: 420px;
  height: 420px;
  background: #ffffff;
  top: -120px;
  left: -70px;
  animation: driftA 16s ease-in-out infinite;
}

.ambient-2 {
  width: 360px;
  height: 360px;
  background: #dfe3e8;
  right: -80px;
  top: 110px;
  animation: driftB 19s ease-in-out infinite;
}

.topbar,
.hero,
main,
.footer {
  position: relative;
  z-index: 2;
}

.topbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 3200;
  overflow: visible;
}

.logo {
  letter-spacing: 0.2em;
  font-weight: 700;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 120px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-image-placeholder {
  max-height: 56px;
}

.topbar .desktop-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  margin-left: auto;
}

.topbar .desktop-nav a {
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar .desktop-nav a:hover {
  color: var(--accent);
}

.topbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 3205;
  overflow: visible;
}

.header-utility-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(154, 160, 168, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.header-cart-link:hover {
  color: var(--accent);
  border-color: rgba(95, 103, 112, 0.42);
  box-shadow: 0 10px 22px rgba(22, 26, 32, 0.12);
  transform: translateY(-1px);
}

.header-cart-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-cart-text {
  white-space: nowrap;
}

.cart-count-badge {
  display: none;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #1d242b;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(154, 160, 168, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-switcher-link {
  color: inherit;
}

.lang-switcher-link.is-active {
  color: var(--accent);
}

/* ─── Product Search ────────────────────────────────────── */
.search-container {
  position: relative;
  width: min(360px, 40vw);
  margin: 0;
  transition: width 0.24s ease;
  z-index: 3210;
  overflow: visible;
}

.search-input-wrapper {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(154, 160, 168, 0.42);
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 1px 2px rgba(22, 26, 32, 0.05);
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.search-input-wrapper::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(154, 160, 168, 0.2);
  box-shadow: 0 0 0 rgba(22, 26, 32, 0);
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  pointer-events: none;
  z-index: -1;
}

.search-input-wrapper:hover {
  border-color: rgba(120, 128, 136, 0.5);
  box-shadow: 0 2px 6px rgba(22, 26, 32, 0.08);
}

.search-input-wrapper:focus-within {
  border-color: rgba(85, 93, 102, 0.62);
  box-shadow: 0 3px 9px rgba(22, 26, 32, 0.1);
}

.search-input-wrapper:hover::before,
.search-input-wrapper:focus-within::before {
  opacity: 1;
  transform: scale(1.02);
  border-color: rgba(154, 160, 168, 0.28);
  box-shadow: 0 12px 24px rgba(22, 26, 32, 0.12);
}

.search-container:focus-within {
  width: min(360px, 40vw);
}

.search-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  pointer-events: none;
  transition: transform 0.25s ease, color 0.25s ease;
}

.search-input-wrapper:hover .search-icon,
.search-input-wrapper:focus-within .search-icon {
  color: var(--accent);
}

.search-input-wrapper:focus-within .search-icon {
  transform: scale(1.06);
}

.search-input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.94rem;
  font-family: inherit;
  outline: 0;
  box-shadow: none;
  padding: 0;
}

.search-input:focus {
  outline: none;
  box-shadow: none;
}

.search-input::placeholder {
  color: var(--muted);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 420px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(154, 160, 168, 0.35);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(18, 22, 28, 0.18);
  z-index: 3290;
  overflow-y: auto;
  backdrop-filter: blur(10px);
  animation: slideDown 0.2s ease;
  pointer-events: auto;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-result-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(215, 218, 221, 0.5);
}

.search-result-item:last-child {
  border-bottom: 0;
}

.search-result-item:hover {
  background-color: rgba(228, 228, 228, 0.4);
}

.search-result-image {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: var(--surface-alt);
  object-fit: cover;
  overflow: hidden;
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-content {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}

.search-result-category {
  padding: 2px 6px;
  border-radius: 4px;
  background-color: var(--surface-alt);
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-price {
  font-weight: 700;
  color: var(--accent);
}

.search-result-old-price {
  text-decoration: line-through;
  color: #838a91;
  font-size: 0.78rem;
}

.search-loading,
.search-empty {
  padding: 20px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 1200px) {
  .search-container {
    width: min(320px, 34vw);
  }
}

@media (max-width: 960px) {
  .search-container {
    width: min(100%, 560px);
  }
}



.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(154, 160, 168, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 239, 242, 0.92));
  color: #2f343a;
  box-shadow: 0 14px 30px rgba(22, 26, 32, 0.1);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(95, 103, 112, 0.42);
  box-shadow: 0 18px 32px rgba(22, 26, 32, 0.14);
}

.mobile-menu-toggle:focus-visible,
.mobile-menu-dismiss:focus-visible,
.mobile-menu-link:focus-visible,
.mobile-menu-utility-link:focus-visible {
  outline: 2px solid rgba(47, 52, 58, 0.72);
  outline-offset: 3px;
}

.mobile-menu-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-menu-layer {
  position: fixed;
  inset: 0;
  z-index: 4000;
  pointer-events: none;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 21, 27, 0.26);
  opacity: 0;
  transition: opacity 0.26s ease;
  backdrop-filter: blur(8px);
}

.mobile-menu-drawer {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(88vw, 360px);
  padding: 18px 18px 22px;
  transition: transform 0.3s ease;
}

.mobile-menu-layer-right .mobile-menu-drawer {
  right: 0;
  transform: translateX(104%);
}

.mobile-menu-layer-left .mobile-menu-drawer {
  left: 0;
  transform: translateX(-104%);
}

.mobile-menu-panel {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid rgba(215, 218, 221, 0.82);
  border-right: 1px solid rgba(215, 218, 221, 0.82);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(252, 252, 253, 0.98), rgba(238, 240, 242, 0.98));
  box-shadow: 0 28px 70px rgba(16, 19, 24, 0.18);
  padding: 22px 18px;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(215, 218, 221, 0.88);
  padding-bottom: 16px;
}

.mobile-menu-eyebrow,
.mobile-menu-section-title {
  margin: 0 0 8px;
  color: #6c727a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-menu-head strong {
  font-size: 1.08rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu-dismiss {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(190, 194, 199, 0.9);
  background: rgba(255, 255, 255, 0.86);
  color: #2f343a;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(22, 26, 32, 0.08);
}

.mobile-menu-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(214, 217, 221, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  padding: 14px 16px;
  color: #2d3339;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(22, 26, 32, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-utility-link:hover {
  transform: translateY(-1px);
  border-color: rgba(112, 119, 128, 0.36);
  box-shadow: 0 18px 28px rgba(22, 26, 32, 0.08);
}

.mobile-menu-link span:last-child {
  color: #7a818a;
  font-size: 1rem;
}

.mobile-menu-utility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-lang-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-menu-utility-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 217, 221, 0.92);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 243, 245, 0.92));
  padding: 12px 14px;
  color: #384047;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 24px rgba(22, 26, 32, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu-utility-link-admin {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, rgba(47, 52, 58, 0.96), rgba(30, 35, 40, 0.94));
  border-color: rgba(47, 52, 58, 0.98);
  color: #f5f7f8;
}

.mobile-lang-switcher .mobile-menu-utility-link.is-active {
  background: linear-gradient(180deg, rgba(47, 52, 58, 0.96), rgba(30, 35, 40, 0.94));
  border-color: rgba(47, 52, 58, 0.98);
  color: #f5f7f8;
}

.mobile-menu-layer.is-open {
  pointer-events: auto;
}

.mobile-menu-layer.is-open .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-layer.is-open .mobile-menu-drawer {
  transform: translateX(0);
}

.footer-brand {
  display: flex;
  justify-content: center;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-align: center;
}

.hero {
  max-width: 1200px;
  margin: 10px auto 0;
  padding: 30px 24px 10px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}

.hero-content {
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.97), rgba(241, 242, 244, 0.95));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 18px 36px rgba(29, 34, 40, 0.08);
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1.04;
}

.hero p {
  color: var(--muted);
  max-width: 580px;
  margin-top: 18px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 34px rgba(31, 35, 42, 0.1);
}

.hero-image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.6s ease;
}

.hero-image-wrap:hover .hero-image {
  transform: scale(1.04);
}

/* Banner Slider Styles */
.banner-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #f5f5f5;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  touch-action: pan-y;
}

@media (max-width: 768px) {
  .banner-slider {
    aspect-ratio: 4 / 3;
  }
}


/* Featured vitrini mobilde 2 kolon kilidi (sadece bu bolum) */
@media (max-width: 640px) {
  #featured .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
  }

  #featured .product-card {
    min-width: 0;
    overflow: hidden;
  }

  #featured .product-card h3,
  #featured .product-card p {
    padding-left: 12px;
    padding-right: 12px;
  }

  #featured .product-card h3 {
    margin: 10px 0 6px;
    font-size: 0.92rem;
    line-height: 1.34;
  }

  #featured .product-card h3 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }

  #featured .product-card p {
    margin: 0 0 12px;
    font-size: 0.79rem;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
}

@media (max-width: 414px) {
  #featured .product-grid {
    gap: 10px;
  }

  #featured .product-card .product-image-wrap {
    min-height: clamp(126px, 42vw, 168px);
    max-height: 168px;
  }
}

@media (max-width: 390px) {
  #featured .product-card .product-image-wrap {
    min-height: clamp(120px, 41vw, 156px);
    max-height: 156px;
  }
}

@media (max-width: 360px) {
  #featured .product-grid {
    gap: 9px;
  }

  #featured .product-card h3,
  #featured .product-card p {
    padding-left: 10px;
    padding-right: 10px;
  }

  #featured .product-card h3 {
    font-size: 0.86rem;
    line-height: 1.32;
  }

  #featured .product-card p {
    font-size: 0.75rem;
    line-height: 1.38;
    margin-bottom: 10px;
  }

  #featured .product-card .product-image-wrap {
    min-height: clamp(114px, 40vw, 146px);
    max-height: 146px;
  }
}

@media (max-width: 320px) {
  #featured .product-grid {
    gap: 8px;
  }

  #featured .product-card .product-image-wrap {
    min-height: clamp(102px, 39vw, 132px);
    max-height: 132px;
  }
}
.banner-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-slide.active {
  opacity: 1;
  position: relative;
}

.banner-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 60px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
  color: #ffffff;
  z-index: 2;
}

.banner-slide-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-slide-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0 0 28px 0;
  max-width: 500px;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.banner-slide-link {
  padding: 12px 32px;
  background: #d4b36b;
  color: #0a0e14;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 0;
  cursor: pointer;
  font-size: 0.95rem;
  display: inline-block;
  letter-spacing: 0.5px;
}

.banner-slide-link:hover {
  background: #e0c284;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(212, 179, 107, 0.3);
}

/* Banner Navigation */
.banner-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.banner-nav-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.banner-prev {
  left: 20px;
}

.banner-next {
  right: 20px;
}

/* Banner Dots */
.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.banner-dot:hover {
  border-color: rgba(255, 255, 255, 0.9);
}

.banner-dot.active {
  background: #ffffff;
  border-color: #ffffff;
  width: 28px;
  border-radius: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .banner-slider-container {
    background: transparent;
  }

  .banner-slide-content {
    padding: 24px 20px;
    background: transparent;
  }

  .banner-slide-title {
    font-size: 1.5rem;
  }

  .banner-slide-description {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .banner-slide-link {
    padding: 10px 24px;
    font-size: 0.85rem;
  }

  .banner-nav-button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .banner-prev {
    left: 12px;
  }

  .banner-next {
    right: 12px;
  }

  .banner-dots {
    bottom: 12px;
    gap: 6px;
  }

  .banner-dot {
    width: 8px;
    height: 8px;
  }

  .banner-dot.active {
    width: 24px;
  }
}

  @media (min-width: 769px) {
    .hero-image-wrap {
      display: flex;
      align-items: stretch;
      min-height: clamp(400px, 42vw, 560px);
    }

    .hero-image {
      width: 100%;
      height: 100%;
      min-height: clamp(400px, 42vw, 560px);
      padding: 0;
      object-fit: cover;
      object-position: center center;
      transform: scale(1);
    }

    .hero-image-wrap:hover .hero-image {
      transform: scale(1.04);
    }

    .banner-slider-container {
      background:
        radial-gradient(circle at top right, rgba(212, 179, 107, 0.16), transparent 30%),
        linear-gradient(145deg, #fbfaf8 0%, #eef2f6 100%);
    }

    .banner-slider {
      aspect-ratio: 16 / 7;
      min-height: clamp(320px, 32vw, 450px);
    }

    .banner-slide {
      background:
        radial-gradient(circle at top right, rgba(212, 179, 107, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(235, 239, 244, 0.9));
    }

    .banner-slide-image {
      padding: clamp(18px, 2.2vw, 34px) clamp(24px, 3.2vw, 46px);
      box-sizing: border-box;
      object-fit: contain;
      object-position: center center;
    }

    .banner-slide-content {
      padding: clamp(32px, 4vw, 54px) clamp(36px, 5vw, 64px);
      background: linear-gradient(90deg, rgba(12, 16, 22, 0.58) 0%, rgba(12, 16, 22, 0.28) 42%, rgba(12, 16, 22, 0.08) 68%, transparent 100%);
    }

    .banner-slide-title {
      max-width: 10ch;
    }

    .banner-slide-description {
      max-width: 42ch;
    }
  }

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 60px;
}

.section {
  margin-top: 34px;
}

.page-intro h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  margin-top: 12px;
}

.meta-line {
  color: var(--muted);
  font-size: 0.92rem;
}

.article-shell {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.blog-page-hero,
.blog-detail-hero {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 246, 248, 0.92));
  box-shadow: 0 20px 40px rgba(30, 36, 42, 0.08);
}

.blog-page-hero-grid,
.blog-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.blog-featured-stack,
.blog-related-list,
.blog-sidebar-card {
  display: grid;
  gap: 12px;
}

.blog-featured-card,
.blog-related-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.blog-featured-card img,
.blog-related-card img,
.blog-cover-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-featured-body,
.blog-related-body {
  padding: 16px;
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card img {
  height: 260px;
}

.blog-card .meta-line {
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 0;
}

.blog-card-footer {
  padding: 0 16px 18px;
}

.blog-detail-grid {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.blog-cover-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
}

.blog-content-rich {
  display: grid;
  gap: 16px;
  line-height: 1.8;
}

.blog-content-rich h2,
.blog-content-rich h3 {
  margin-bottom: 0;
}

.blog-content-rich p,
.blog-content-rich ul,
.blog-content-rich ol,
.blog-content-rich blockquote {
  margin: 0;
}

.blog-content-rich img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.blog-content-rich blockquote {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
}

.blog-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-size: 0.84rem;
}

.article-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-detail-media img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.detail-gallery {
  position: relative;
}

.detail-image-wrap {
  width: 100%;
  max-width: min(100%, 540px);
  aspect-ratio: 4 / 5;
  max-height: clamp(320px, 36vw, 560px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f2f3f5);
  margin-inline: auto;
}

.detail-image-wrap:hover {
  border-color: var(--border);
  box-shadow: none;
}

.detail-main-trigger {
  width: 100%;
  padding: 0;
  cursor: default;
}

.detail-main-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: none;
  transform: none;
}

.detail-gallery-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: min(100%, 540px);
  margin-inline: auto;
}

.detail-thumb {
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
}

.detail-gallery-grid img {
  width: 100%;
  border-radius: 0;
  border: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.detail-thumb:hover img {
  opacity: 1;
}

.detail-thumb.is-active {
  border-color: rgba(47, 52, 58, 0.62);
  box-shadow: 0 0 0 2px rgba(47, 52, 58, 0.16);
}

@media (min-width: 981px) {
  .detail-image-wrap {
    max-width: min(100%, 500px);
    max-height: clamp(300px, 30vw, 500px);
  }

  .detail-gallery-grid {
    max-width: min(100%, 500px);
  }
}

@media (max-width: 980px) {
  .detail-image-wrap,
  .detail-gallery-grid {
    max-width: 100%;
  }

  .detail-image-wrap {
    max-height: clamp(280px, 68vw, 460px);
  }
}

.price-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.price-row strong {
  font-size: 1.7rem;
  color: var(--accent);
}

.price-row span {
  color: var(--muted);
  text-decoration: line-through;
}

.section-link {
  margin-top: 14px;
  color: var(--accent);
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.7rem;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.campaign-grid,
.category-grid,
.product-grid,
.blog-grid {
  display: grid;
  gap: 16px;
}

.campaign-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.campaign-card {
  background: linear-gradient(135deg, #ffffff, #f0f1f3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(30, 36, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.campaign-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(30, 36, 42, 0.12);
  border-color: #c9cdd2;
}

.campaign-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.campaign-card p {
  color: var(--muted);
  margin-bottom: 10px;
}

.campaign-card span {
  color: var(--accent);
  font-weight: 600;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.product-card,
.blog-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f7 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(30, 36, 42, 0.1);
}

.category-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card img,
.blog-card img,
.product-card .image-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.category-card img {
  transform: scale(1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-content,
.blog-content,
.product-card h3,
.product-card p {
  padding-left: 16px;
  padding-right: 16px;
}

.category-content h3,
.blog-content h3,
.product-card h3 {
  margin: 14px 0 8px;
}

.category-content p,
.blog-content p,
.product-card p {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--muted);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: #eef1f4;
}

.product-card .image-wrap img {
  opacity: 1;
  transform: none;
  transition: opacity 0.2s ease;
}

.category-card > a,
.blog-card > a {
  position: relative;
  display: block;
  background: #eef1f4;
}

.is-image-loading {
  background: linear-gradient(90deg, #e9edf1 0%, #f4f6f8 50%, #e9edf1 100%);
  background-size: 220% 100%;
  animation: imageSkeleton 1.1s linear infinite;
}

.is-image-loading img {
  opacity: 0.01;
}

@keyframes imageSkeleton {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -20% 0;
  }
}

.product-card {
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover {
  border-color: rgba(47, 52, 58, 0.28);
  box-shadow: 0 22px 42px rgba(30, 36, 42, 0.14);
}

#featured .product-card .image-wrap {
  display: block;
  overflow: hidden;
  background: #f2f3f5;
}

#featured .product-card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.26s ease;
}

@media (hover: hover) and (pointer: fine) and (min-width: 981px) {
  .category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(30, 36, 42, 0.13);
    border-color: #c8ced4;
  }

  .category-card:hover img {
    transform: scale(1.015);
  }

  #featured .product-card {
    transition: box-shadow 0.26s ease, border-color 0.26s ease, transform 0.26s ease;
  }

  #featured .product-card:hover {
    transform: translateY(-1px);
    border-color: rgba(47, 52, 58, 0.32);
    box-shadow: 0 24px 44px rgba(30, 36, 42, 0.16);
  }

  #featured .product-card:hover .image-wrap img {
    transform: scale(1);
  }
}

@media (min-width: 981px) {
  .category-card img,
  #featured .product-card .image-wrap {
    aspect-ratio: 4 / 5;
    height: clamp(220px, 22vw, 290px);
    min-height: 220px;
    max-height: 290px;
  }
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding: 28px 20px;
}

.btn {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #e6e6e7, #f7f7f8);
  color: var(--accent);
  border-color: #d2d5d9;
  box-shadow: 0 10px 20px rgba(24, 28, 34, 0.1);
}

.btn-primary:hover {
  transform: translateY(-1px);
  border-color: #bfc4ca;
  box-shadow: 0 14px 24px rgba(24, 28, 34, 0.14);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: #ffffff;
  border-color: #c8ccd1;
}

.btn-order-delete {
  background: linear-gradient(180deg, #fbf1f1, #f7e3e3);
  color: #8f2c2c;
  border-color: #e8c9c9;
  box-shadow: 0 8px 18px rgba(112, 34, 34, 0.08);
}

.btn-order-delete:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #fff6f6, #f4dddd);
  border-color: #ddb4b4;
  box-shadow: 0 12px 22px rgba(112, 34, 34, 0.12);
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ─── btn-checkout : Mavi Gradient (Siparis Olustur ve Ode) ─── */
.btn-checkout {
  background: linear-gradient(135deg, #cce8f8 0%, #6db8e8 100%);
  color: #111111;
  border-color: #7ec4ec;
  box-shadow: 0 8px 20px rgba(70, 140, 200, 0.20);
}

.btn-checkout:hover:not(:disabled) {
  background: linear-gradient(135deg, #b8dcf5 0%, #55afe5 100%);
  transform: translateY(-1px);
  border-color: #60b0e0;
  box-shadow: 0 12px 24px rgba(70, 140, 200, 0.30);
}

.btn-checkout:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(70, 140, 200, 0.22);
}

.btn-checkout:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ─── btn-addtocart : Yeşil Gradient (Sepete Ekle) ──────────── */
.btn-addtocart {
  background: linear-gradient(135deg, #c8edc2 0%, #6aca63 100%);
  color: #111111;
  border-color: #84cf7e;
  box-shadow: 0 8px 20px rgba(80, 180, 75, 0.18);
}

.btn-addtocart:hover:not(:disabled) {
  background: linear-gradient(135deg, #b8e5b0 0%, #56c14e 100%);
  transform: translateY(-1px);
  border-color: #6ec267;
  box-shadow: 0 12px 24px rgba(80, 180, 75, 0.28);
}

.btn-addtocart:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(80, 180, 75, 0.20);
}

.btn-addtocart:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-body {
  background: radial-gradient(circle at 5% -10%, rgba(255, 255, 255, 0.96), transparent 42%),
    radial-gradient(circle at 95% 10%, rgba(228, 232, 236, 0.78), transparent 36%),
    linear-gradient(140deg, #f7f7f7, #ececed);
}

.admin-shell {
  max-width: 1360px;
  margin: 24px auto;
  padding: 0 16px 26px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.admin-card,
.admin-login {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(242, 243, 245, 0.98));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 36px rgba(26, 31, 38, 0.1);
}

.admin-login {
  max-width: 400px;
  margin: 80px auto;
}

.admin-brand-mark {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 14px;
}

.admin-sidebar {
  position: sticky;
  top: 14px;
  display: grid;
  gap: 14px;
}

.admin-eyebrow {
  margin: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.75rem;
}

.admin-sidebar h1 {
  margin: 8px 0 0;
  font-size: 1.4rem;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.module-btn {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.module-btn:hover {
  border-color: #bfc4ca;
  background: #ffffff;
}

.module-btn.active {
  background: linear-gradient(120deg, #ececed, #ffffff);
  border-color: #bcc1c7;
  color: #1b1f24;
}

.sidebar-logout {
  display: inline-flex;
  justify-content: center;
}

.admin-main {
  display: grid;
  gap: 12px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-header h2 {
  margin: 0;
}

.admin-header p {
  margin: 8px 0 0;
  color: var(--muted);
}

.admin-form {
  display: grid;
}

.admin-module {
  display: none;
  animation: fadeSlide 0.22s ease;
}

.admin-module.active {
  display: block;
}

.admin-module h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.admin-muted {
  margin-top: 0;
  color: var(--muted);
}

.sub-heading {
  margin-top: 18px;
  margin-bottom: 8px;
}

label {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 4px;
}

input,
textarea,
select,
button {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 10px 12px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #aeb4bc;
  box-shadow: 0 0 0 4px rgba(31, 36, 43, 0.08);
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.check-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.check-label input[type='checkbox'] {
  width: 18px;
  height: 18px;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.color-grid label input {
  height: 44px;
  padding: 0;
}

.row-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.row-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.row-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.row-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.row-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.row-grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.admin-entity {
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.metric-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff, #f2f3f5);
}

.metric-card span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
}

.metric-card strong {
  margin-top: 6px;
  display: block;
  font-size: 1.5rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 14px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid #dde0e4;
  padding: 10px;
  text-align: left;
  font-size: 0.92rem;
}

.admin-table th {
  color: var(--muted);
  font-weight: 600;
}

.sortable-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.sortable-list li {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: move;
}

.sortable-list li.dragging {
  opacity: 0.55;
}

.flash {
  border-radius: 10px;
  padding: 10px 12px;
}

.flash.success {
  background: rgba(21, 132, 84, 0.1);
  border: 1px solid rgba(21, 132, 84, 0.22);
}

.flash.error {
  background: rgba(189, 57, 66, 0.1);
  border: 1px solid rgba(189, 57, 66, 0.24);
}

.admin-inline-alert {
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cdd2d8;
  background: #f3f4f6;
}

.admin-notice-stack {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.admin-notice-item {
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.admin-notice-item p {
  margin: 6px 0;
  color: var(--muted);
}

.admin-notice-item small {
  color: var(--muted);
}

.admin-product-media {
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  padding: 12px;
}

.admin-product-media-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.admin-upload-dropzone {
  border: 1px dashed #b9c0c8;
  border-radius: 12px;
  background: linear-gradient(180deg, #fafbfc, #f0f2f4);
  padding: 14px;
  display: grid;
  gap: 4px;
  margin-bottom: 8px;
}

.admin-upload-dropzone strong {
  font-size: 0.95rem;
}

.admin-upload-dropzone span,
.admin-upload-dropzone small {
  color: var(--muted);
}

.admin-upload-dropzone.is-over {
  border-color: #8e98a4;
  box-shadow: 0 0 0 4px rgba(42, 47, 54, 0.08);
}

.admin-upload-hints {
  margin: 6px 0 10px;
  display: grid;
  gap: 3px;
}

.admin-upload-hint {
  margin: 0;
  color: #67707a;
  font-size: 12px;
  line-height: 1.4;
}

.admin-upload-status {
  min-height: 22px;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(245, 246, 248, 0.72);
}

.admin-upload-status.is-success {
  color: #136b43;
  background: rgba(21, 132, 84, 0.12);
}

.admin-upload-status.is-error {
  color: #a32d35;
  background: rgba(189, 57, 66, 0.12);
}

.admin-upload-status.is-loading {
  color: #2b3037;
  background: rgba(57, 63, 74, 0.1);
}

.banner-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  min-width: 220px;
  max-width: 360px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  box-shadow: 0 12px 20px rgba(18, 22, 29, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.banner-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.banner-toast.is-success {
  background: #f4fbf7;
  border-color: #9ccdb2;
  color: #136b43;
}

.banner-toast.is-error {
  background: #fff6f6;
  border-color: #e0a7ab;
  color: #9d2930;
}

/* ─── Scroll Controls ─────────────────────────────────────── */
.scroll-controls {
  --scroll-controls-offset: 0px;
  position: fixed;
  right: clamp(12px, 2.4vw, 24px);
  bottom: calc(18px + env(safe-area-inset-bottom, 0px) + var(--scroll-controls-offset));
  display: grid;
  gap: 10px;
  z-index: 1700;
  pointer-events: none;
}

.scroll-control-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(154, 160, 168, 0.56);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(236, 239, 242, 0.94));
  color: #2f343a;
  box-shadow: 0 12px 28px rgba(19, 23, 29, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.scroll-control-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-control-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(95, 103, 112, 0.5);
  box-shadow: 0 16px 34px rgba(19, 23, 29, 0.18);
}

.scroll-control-btn:focus-visible {
  outline: 2px solid rgba(47, 52, 58, 0.72);
  outline-offset: 3px;
}

.scroll-control-btn.is-hidden {
  opacity: 0;
  transform: translateY(6px) scale(0.96);
  pointer-events: none;
}

@media (max-width: 980px) {
  .scroll-controls {
    right: 12px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px) + var(--scroll-controls-offset));
  }

  .scroll-control-btn {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }
}

.admin-product-media-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.admin-media-title {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-cover-preview,
.admin-gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.admin-media-empty {
  border: 1px dashed var(--border);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(250, 251, 252, 0.9);
  padding: 14px;
}

.admin-image-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.admin-image-card.is-dragging {
  opacity: 0.5;
}

.admin-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.admin-image-card-cover img {
  aspect-ratio: 16 / 9;
}

.admin-image-actions {
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.admin-image-actions .btn {
  border-radius: 8px;
  padding: 7px 8px;
  font-size: 0.8rem;
}

.admin-blog-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-blog-sidebar,
.admin-blog-editor {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  padding: 16px;
}

.admin-blog-sidebar {
  position: sticky;
  top: 12px;
}

.admin-blog-sidebar-head,
.admin-blog-editor-head,
.admin-blog-media-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.admin-blog-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-blog-list {
  display: grid;
  gap: 12px;
}

.admin-blog-list-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  padding: 10px;
  cursor: pointer;
}

.admin-blog-list-card.is-active {
  border-color: #9ea7b0;
  box-shadow: 0 12px 24px rgba(31, 36, 43, 0.08);
}

.admin-blog-list-thumb img,
.admin-blog-cover-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}

.admin-blog-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.admin-blog-list-body h5 {
  margin: 8px 0 6px;
}

.admin-blog-list-body p {
  margin: 0 0 10px;
  color: var(--muted);
  word-break: break-word;
}

.admin-blog-list-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-status-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.76rem;
  border: 1px solid transparent;
}

.admin-status-chip.is-published {
  color: #136b43;
  background: rgba(21, 132, 84, 0.12);
  border-color: rgba(21, 132, 84, 0.2);
}

.admin-status-chip.is-draft {
  color: #8f6a1c;
  background: rgba(143, 106, 28, 0.12);
  border-color: rgba(143, 106, 28, 0.2);
}

.admin-blog-form {
  display: grid;
  gap: 14px;
}

.admin-blog-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-blog-media-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.admin-blog-cover-preview,
.admin-blog-gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.admin-blog-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.admin-blog-editor-surface {
  min-height: 320px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  line-height: 1.7;
}

.admin-blog-editor-surface:focus {
  outline: none;
  border-color: #aeb4bc;
  box-shadow: 0 0 0 4px rgba(31, 36, 43, 0.08);
}

.admin-blog-editor-surface:empty::before {
  content: attr(data-placeholder);
  color: var(--muted);
}

.order-entity {
  margin-bottom: 16px;
}

.admin-order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-order-header .sub-heading {
  margin: 0;
}

.admin-order-action-cell {
  white-space: nowrap;
}

.admin-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.admin-confirm-modal[hidden] {
  display: none !important;
}

.admin-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 29, 0.44);
  backdrop-filter: blur(3px);
}

.admin-confirm-dialog {
  position: relative;
  width: min(100%, 460px);
  border-radius: 18px;
  border: 1px solid rgba(215, 218, 221, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 245, 247, 0.98));
  box-shadow: 0 24px 60px rgba(18, 22, 27, 0.2);
  padding: 24px;
}

.admin-confirm-eyebrow {
  margin: 0 0 8px;
  color: #8f2c2c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-confirm-dialog h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.admin-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.order-log-wrap summary {
  cursor: pointer;
  color: var(--accent);
  margin-top: 10px;
}

.order-tracking-shell {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.tracking-form {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
}

.tracking-result {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff, #f2f3f5);
}

.tracking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.tracking-header h2 {
  margin: 4px 0 0;
}

.tracking-note {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.tracking-note p {
  margin: 6px 0;
}

.status-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  border: 1px solid transparent;
}

.status-pill.awaiting-payment {
  color: #8f6a1c;
  border-color: rgba(143, 106, 28, 0.28);
  background: rgba(143, 106, 28, 0.1);
}

.status-pill.approved,
.status-pill.preparing,
.status-pill.packed,
.status-pill.shipped {
  color: #2b627c;
  border-color: rgba(43, 98, 124, 0.28);
  background: rgba(43, 98, 124, 0.1);
}

.status-pill.delivered,
.status-pill.return-completed {
  color: #1c7a52;
  border-color: rgba(28, 122, 82, 0.28);
  background: rgba(28, 122, 82, 0.1);
}

.status-pill.cancelled,
.status-pill.return-requested {
  color: #9a3d45;
  border-color: rgba(154, 61, 69, 0.3);
  background: rgba(154, 61, 69, 0.1);
}

.status-timeline {
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.timeline-step {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  color: var(--muted);
}

.timeline-step.done {
  border-color: rgba(28, 122, 82, 0.3);
  background: rgba(28, 122, 82, 0.09);
  color: #25573f;
}

.timeline-step.active {
  border-color: rgba(43, 98, 124, 0.3);
  background: rgba(43, 98, 124, 0.1);
  color: #1f4b60;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes driftA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 26px) scale(1.08);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-28px, 16px) scale(0.95);
  }
}

@media (max-width: 980px) {
  .topbar {
    padding-top: 18px;
    padding-bottom: 18px;
    flex-wrap: wrap;
    z-index: 3200;
    overflow: visible;
  }

  .topbar .desktop-nav {
    display: none;
  }

  .topbar-actions {
    order: 2;
    flex: 1 1 100%;
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
    margin-top: 2px;
    overflow: visible;
  }

  .search-container {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    overflow: visible;
  }

  .search-container:focus-within {
    width: auto;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: 0;
    flex-shrink: 0;
    order: 1;
  }

  .header-utility-group {
    flex-shrink: 0;
  }

  .topbar[data-mobile-menu-side="left"] .mobile-menu-toggle {
    order: -1;
    margin-left: 0;
    margin-right: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .campaign-grid,
  .category-grid,
  .product-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }
}

/* ─── Cookie Consent Banner ─────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--surface);
  border: 1px solid rgba(154, 160, 168, 0.55);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(16, 19, 24, 0.14);
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#cookie-banner.cookie-banner-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #2f343a, #454c55);
  color: #ffffff;
  border: 1px solid #2f343a;
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 6px 16px rgba(22, 26, 32, 0.18);
}

.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(22, 26, 32, 0.22);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.cookie-btn-reject:hover {
  background: var(--surface-alt);
  border-color: #bfc4ca;
}

@media (max-width: 560px) {
  #cookie-banner {
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 20px;
  }

  #cookie-banner.cookie-banner-hidden {
    transform: translateY(20px);
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-btn-accept,
  .cookie-btn-reject {
    flex: 1;
    text-align: center;
    padding: 11px 12px;
  }
}

@media (max-width: 980px) {
  .admin-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .row-grid-4,
  .row-grid-5,
  .row-grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .row-grid {
    grid-template-columns: 1fr;
  }

  .blog-page-hero-grid,
  .blog-detail-grid,
  .admin-blog-layout,
  .admin-blog-media-grid {
    grid-template-columns: 1fr;
  }

  .admin-blog-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 16px 18px;
    gap: 14px;
  }

  .topbar-actions {
    gap: 10px;
  }

  .header-utility-group {
    gap: 6px;
  }

  .header-cart-text {
    display: none;
  }

  .header-cart-link {
    padding: 10px;
    min-width: 42px;
    justify-content: center;
  }

  .search-input-wrapper {
    padding: 10px 14px;
  }

  .search-suggestions {
    border-radius: 14px;
    max-height: min(58vh, 360px);
    top: calc(100% + 10px);
    z-index: 3290;
  }

  .search-result-item {
    padding: 11px 12px;
    gap: 10px;
  }

  .search-result-image {
    width: 44px;
    height: 44px;
  }

  .logo-image {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
  }

  .logo-image-placeholder {
    max-height: 48px;
  }

  .mobile-menu-drawer {
    width: min(92vw, 340px);
    padding: 12px;
  }

  .lang-switcher {
    padding: 8px 10px;
    gap: 6px;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }

  .mobile-menu-panel {
    border-radius: 24px;
    padding: 18px 14px;
  }

  .mobile-menu-utility-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 34px 22px;
  }

  .campaign-grid,
  .category-grid,
  .product-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  #best .best-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
  }

  #best .product-card {
    min-width: 0;
    overflow: hidden;
  }

  #best .product-card .product-image-wrap {
    aspect-ratio: 1 / 1;
    min-height: clamp(132px, 42vw, 188px);
    max-height: 188px;
  }

  #best .product-card h3,
  #best .product-card p {
    padding-left: 12px;
    padding-right: 12px;
  }

  #best .product-card h3 {
    margin: 10px 0 6px;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  #best .product-card h3 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #best .product-card p {
    margin-bottom: 12px;
    font-size: 0.8rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }

  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }

  .row-grid-2,
  .row-grid-3,
  .row-grid-4,
  .row-grid-5,
  .row-grid-6,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .admin-product-media-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-image-actions {
    grid-template-columns: 1fr;
  }

  .tracking-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .admin-blog-sidebar-head,
  .admin-blog-editor-head,
  .admin-blog-media-head,
  .admin-blog-list-card {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .admin-blog-editor-actions,
  .admin-blog-list-actions,
  .admin-blog-editor-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .status-timeline {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 390px) {
  #best .best-grid {
    gap: 10px;
  }

  #best .product-card .product-image-wrap {
    min-height: clamp(120px, 44vw, 168px);
    max-height: 168px;
  }
}

@media (max-width: 360px) {
  #best .best-grid {
    gap: 9px;
  }

  #best .product-card h3,
  #best .product-card p {
    padding-left: 10px;
    padding-right: 10px;
  }

  #best .product-card h3 {
    font-size: 0.86rem;
    line-height: 1.32;
  }

  #best .product-card p {
    font-size: 0.76rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
}

@media (max-width: 320px) {
  #best .best-grid {
    gap: 8px;
  }

  #best .product-card .product-image-wrap {
    min-height: clamp(108px, 43vw, 146px);
    max-height: 146px;
  }
}

body.mobile-menu-open {
  overflow: hidden;
}

/* ─── Hero Upload Styles ──────────────────────────────────────── */

.upload-zone {
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.upload-zone:hover {
  background: #e8ecf0 !important;
}

.hero-upload-progress {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.hero-upload-progress.is-success {
  color: #136b43;
}

.hero-upload-progress.is-error {
  color: #a32d35;
}

.hero-upload-progress.is-loading {
  color: #2b6cb0;
}

.image-preview-container {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

/* ─── Category Image Upload Widget ───────────────────────────── */

.cat-img-upload {
  display: grid;
  gap: 6px;
}

/* ─── Cart Page ──────────────────────────────────────────────── */

.cart-panel {
  border: 1px solid rgba(180, 186, 193, 0.5);
  border-radius: 18px;
}

.cart-empty {
  padding: 14px 0;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-row {
  border: 1px solid rgba(187, 193, 200, 0.56);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 247, 248, 0.86));
}

.cart-row-main {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
}

.cart-thumb-wrap {
  width: 78px;
  height: 78px;
  border-radius: 12px;
  border: 1px solid rgba(193, 199, 205, 0.75);
  background: #f5f6f8;
  overflow: hidden;
}

.cart-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-thumb-placeholder {
  background: linear-gradient(145deg, #f0f2f5, #e2e5ea);
}

.cart-row-content {
  min-width: 0;
}

.cart-row-title {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.cart-row-meta {
  margin: 0;
}

.cart-price-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.cart-price-block {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(195, 201, 207, 0.72);
  background: rgba(255, 255, 255, 0.86);
}

.cart-price-label {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.cart-price-old {
  font-size: 0.84rem;
  color: #8c9298;
  text-decoration: line-through;
}

.cart-price-new,
.cart-price-plain {
  font-size: 1rem;
}

.cart-price-discount strong {
  color: #15653f;
}

.cart-row-actions {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cart-qty-label {
  font-size: 0.86rem;
  color: var(--muted);
}

.cart-qty-input {
  width: 86px;
}

.cart-remove-btn {
  color: #8f1f2f;
  border-color: rgba(161, 52, 72, 0.26);
}

.cart-summary {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(188, 194, 199, 0.7);
  padding-top: 12px;
}

.cart-summary-row {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cart-summary-discount strong {
  color: #15653f;
}

.cart-summary-total {
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px dashed rgba(174, 180, 187, 0.8);
}

.cart-summary-total strong {
  font-size: 1.14rem;
  color: #1d242b;
}

.checkout-payment-block {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(187, 193, 200, 0.64);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 248, 250, 0.92));
}

.checkout-payment-title {
  margin: 0;
}

.checkout-payment-options {
  display: grid;
  gap: 8px;
}

.checkout-payment-option {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(186, 192, 199, 0.7);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.checkout-payment-option:hover {
  border-color: rgba(112, 121, 130, 0.55);
  box-shadow: 0 8px 20px rgba(20, 24, 30, 0.08);
}

.checkout-payment-option.is-selected {
  border-color: rgba(43, 54, 66, 0.5);
  box-shadow: 0 10px 22px rgba(22, 27, 34, 0.14);
  transform: translateY(-1px);
}

.checkout-payment-option input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.checkout-payment-option-body {
  display: grid;
  gap: 2px;
}

.checkout-payment-option-body strong {
  font-size: 0.95rem;
}

.checkout-payment-option-body small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.checkout-payment-detail {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(170, 178, 186, 0.82);
  background: rgba(248, 249, 251, 0.9);
}

.checkout-payment-detail p {
  margin: 0;
}

.checkout-payment-detail ul {
  margin: 8px 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.checkout-approval {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(187, 193, 200, 0.64);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
  font-size: 0.92rem;
}

.checkout-approval input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.checkout-approval a {
  text-decoration: underline;
  color: #2f343a;
}

.checkout-approval a:hover {
  color: #151a1f;
}

@media (max-width: 980px) {
  .cart-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cart-row-main {
    grid-template-columns: 64px 1fr;
  }

  .cart-thumb-wrap {
    width: 64px;
    height: 64px;
    border-radius: 10px;
  }

  .cart-price-grid {
    grid-template-columns: 1fr;
  }

  .cart-row-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cart-qty-input {
    width: 100%;
  }

  .checkout-payment-option {
    grid-template-columns: 24px 1fr;
    padding: 12px;
  }

  .checkout-payment-option input[type="radio"] {
    width: 22px;
    height: 22px;
  }

  .checkout-payment-option-body strong {
    font-size: 1rem;
  }

  .checkout-payment-option-body small {
    font-size: 0.9rem;
  }

  .checkout-approval {
    grid-template-columns: 24px 1fr;
    gap: 12px;
    font-size: 0.95rem;
  }

  .checkout-approval input[type="checkbox"] {
    width: 22px;
    height: 22px;
  }
}

/* ─── Footer legal links ─────────────────────────────────── */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.76rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.18s;
}

.footer-legal a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* ─── Legal article pages ────────────────────────────────── */
.legal-article h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 6px;
}

.legal-article h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.legal-article h3 {
  font-size: 0.97rem;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 6px;
}

.legal-article p,
.legal-article li {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--text);
}

.legal-article ul,
.legal-article ol {
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal-article a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-article code {
  font-family: monospace;
  background: var(--surface-alt);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.87rem;
}

.legal-contact-box {
  margin-top: 32px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-alt);
}

.legal-contact-box p {
  margin: 4px 0;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   MOBİL GÖRÜNTÜ TAŞMA DÜZELTMELERİ
   Hedef: 320 / 360 / 390 / 414 / 640 / 768 px
   ═══════════════════════════════════════════════════════════ */

/* 1 ── Global güvenlik: görsel asla kapsayıcısından taşmasın */
img {
  max-width: 100%;
}

/* 2 ── Hero: min-height:460px ve scale(1.05) mobilde taşmaya yol açıyor */
@media (max-width: 768px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
    gap: 14px;
  }

  .hero-image-wrap {
    overflow: hidden;
    max-height: 340px;
  }

  .hero-image {
    min-height: 200px;
    max-height: 340px;
    transform: none;      /* scale(1.05) → yatay scroll oluşturabilir */
    transition: none;
  }

  .hero-image-wrap:hover .hero-image {
    transform: none;
  }
}

/* 3 ── Featured ürün kartı: .image-wrap'ta yükseklik tanımsız →
        height:100% çalışmıyor, görsel intrinsic boy ile taşıyor */
@media (max-width: 980px) {
  #featured .product-card {
    min-width: 0;
    overflow: hidden;
  }

  #featured .product-card .image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: min(72vw, 280px);
    overflow: hidden;
    background: linear-gradient(180deg, #f7f8f9 0%, #eef1f4 100%);
  }

  #featured .product-card .image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px;
    box-sizing: border-box;
  }
}

/* 4 ── 640px ve altı: küçük ekran iyileştirmeleri */
@media (max-width: 640px) {
  .hero {
    padding-top: 14px;
    padding-bottom: 6px;
    padding-left: 14px;
    padding-right: 14px;
    gap: 12px;
  }

  .hero-image-wrap {
    max-height: 280px;
  }

  .hero-image {
    min-height: 160px;
    max-height: 280px;
  }

  .category-card {
    border-radius: 16px;
  }

  .category-card > a {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(180deg, #f6f7f8 0%, #eef1f4 100%);
  }

  .category-card img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 12px 12px 8px;
    box-sizing: border-box;
  }

  .category-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .category-content h3 {
    margin: 12px 0 6px;
    font-size: 1rem;
    line-height: 1.28;
  }

  .category-content p {
    margin-bottom: 14px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  #featured .product-card .image-wrap {
    aspect-ratio: 5 / 4;
    max-height: min(78vw, 300px);
  }

  #featured .product-card .image-wrap img {
    padding: 12px;
  }

  .banner-slider {
    aspect-ratio: 3 / 2;
  }

  .banner-slide-content {
    padding: 14px 16px;
  }

  .banner-slide-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .banner-slide-description {
    font-size: 0.88rem;
    max-width: 85%;
    margin-bottom: 10px;
  }

  .banner-slide-link {
    padding: 8px 18px;
    font-size: 0.83rem;
  }

  main {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* Mobile-only category showcase layout: keep 2 cards per row without affecting other sections. */
@media (max-width: 640px) {
  #categories .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 2.8vw, 14px);
    align-items: start;
    width: 100%;
    overflow-x: clip;
  }

  #categories .category-card {
    min-width: 0;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  #categories .category-card > a {
    aspect-ratio: 4 / 5;
    width: 100%;
    flex-shrink: 0;
  }

  #categories .category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0;
  }

  #categories .category-content {
    padding: 10px;
    display: grid;
    gap: 6px;
    align-content: start;
    min-width: 0;
  }

  #categories .category-content h3 {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #categories .category-content p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--muted);
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 414px) {
  #categories .category-grid {
    gap: 10px;
  }

  #categories .category-content {
    padding: 9px;
  }

  #categories .category-content h3 {
    font-size: 0.88rem;
    margin-bottom: 5px;
  }

  #categories .category-content p {
    font-size: 0.74rem;
  }
}

@media (max-width: 390px) {
  #categories .category-content {
    padding: 8px;
  }

  #categories .category-content h3 {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  #categories .category-content p {
    font-size: 0.73rem;
    line-height: 1.38;
  }
}

@media (max-width: 360px) {
  #categories .category-grid {
    gap: 9px;
  }

  #categories .category-content {
    padding: 8px;
  }

  #categories .category-content h3 {
    font-size: 0.84rem;
  }

  #categories .category-content p {
    font-size: 0.72rem;
  }
}

@media (max-width: 320px) {
  #categories .category-grid {
    gap: 8px;
  }

  #categories .category-content {
    padding: 7px;
    gap: 5px;
  }

  #categories .category-content h3 {
    font-size: 0.82rem;
  }

  #categories .category-content p {
    -webkit-line-clamp: 1;
    line-clamp: 1;
    font-size: 0.7rem;
  }
}

/* 5 ── 414px ve altı: geniş çoğunluk telefon ekranı */
@media (max-width: 414px) {
  #featured .product-card .image-wrap {
    aspect-ratio: 1 / 1;
    max-height: min(80vw, 260px);
  }

  #featured .product-card .image-wrap img {
    padding: 10px;
  }

  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-image-wrap {
    max-height: 250px;
  }

  .hero-image {
    min-height: 140px;
    max-height: 250px;
  }

  .category-card > a {
    aspect-ratio: 5 / 4;
  }

  .category-card img {
    padding: 10px 10px 6px;
  }

  .category-content {
    padding-left: 12px;
    padding-right: 12px;
  }

  .category-content h3 {
    font-size: 0.96rem;
  }

  .category-content p {
    font-size: 0.84rem;
    margin-bottom: 12px;
  }

  .banner-slider {
    aspect-ratio: 4 / 3;
  }

  .banner-slide-content {
    padding: 12px 14px;
  }

  .banner-slide-title {
    font-size: 1.1rem;
  }

  .banner-slide-description {
    font-size: 0.84rem;
    max-width: 80%;
  }

  main {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 390px) {
  #featured .product-card .image-wrap {
    max-height: min(82vw, 248px);
  }

  #featured .product-card .image-wrap img {
    padding: 9px;
  }

  .category-card > a {
    aspect-ratio: 6 / 5;
  }

  .category-card img {
    padding: 9px 9px 5px;
  }
}

/* 6 ── 360px ve altı: dar telefon desteği */
@media (max-width: 360px) {
  #featured .product-card .image-wrap {
    max-height: min(84vw, 236px);
  }

  #featured .product-card .image-wrap img {
    padding: 8px;
  }

  .hero-image-wrap {
    max-height: 220px;
  }

  .hero-image {
    min-height: 120px;
    max-height: 220px;
  }

  .category-card > a {
    aspect-ratio: 11 / 9;
  }

  .category-card img {
    padding: 8px 8px 4px;
  }

  .category-content {
    padding-left: 11px;
    padding-right: 11px;
  }

  .banner-slide-description {
    display: none;   /* Bu genişlikte yeterli alan yok */
  }

  main {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 320px) {
  #featured .product-card .image-wrap {
    max-height: min(86vw, 218px);
  }

  #featured .product-card .image-wrap img {
    padding: 7px;
  }

  .category-card > a {
    aspect-ratio: 13 / 10;
  }

  .category-card img {
    padding: 7px 7px 3px;
  }
}

/* Home product media harmony: featured showcase + best sellers */
.product-media-section .product-card {
  --product-card-surface: color-mix(in srgb, var(--surface) 92%, var(--surface-alt) 8%);
  --product-card-surface-soft: color-mix(in srgb, var(--product-card-surface) 86%, #ffffff 14%);
  --product-card-glow: color-mix(in srgb, var(--accent) 8%, transparent 92%);
}

#featured .product-card .product-image-wrap,
#best .product-card .product-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: clamp(210px, 20vw, 280px);
  max-height: 280px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 80%, transparent 20%);
  transition: background 0.45s ease;
  background:
    radial-gradient(circle at 18% 12%, color-mix(in srgb, var(--product-card-glow) 76%, transparent 24%) 0%, transparent 54%),
    radial-gradient(circle at 86% 88%, color-mix(in srgb, var(--product-card-glow) 58%, transparent 42%) 0%, transparent 56%),
    linear-gradient(165deg, var(--product-card-surface-soft) 0%, var(--product-card-surface) 100%);
}

#featured .product-card .product-image-wrap::after,
#best .product-card .product-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 42%, rgba(30, 36, 42, 0.04) 100%);
  z-index: 0;
}

#featured .product-card .product-image-wrap img,
#best .product-card .product-image-wrap img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(4px, 0.8vw, 9px);
  transform: translateZ(0);
  transition: transform 0.28s ease, filter 0.28s ease;
  filter: drop-shadow(0 8px 18px rgba(28, 34, 40, 0.12));
}

@media (hover: hover) and (pointer: fine) {
  #featured .product-card:hover .product-image-wrap img,
  #best .product-card:hover .product-image-wrap img {
    transform: scale(1.02);
    filter: drop-shadow(0 10px 20px rgba(28, 34, 40, 0.14));
  }
}

@media (max-width: 980px) {
  #featured .product-card .product-image-wrap,
  #best .product-card .product-image-wrap {
    aspect-ratio: 1 / 1;
    min-height: clamp(188px, 45vw, 250px);
    max-height: 250px;
  }

  #featured .product-card .product-image-wrap img,
  #best .product-card .product-image-wrap img {
    padding: clamp(4px, 1.8vw, 9px);
  }
}

@media (max-width: 640px) {
  #featured .product-card .product-image-wrap,
  #best .product-card .product-image-wrap {
    min-height: clamp(168px, 55vw, 220px);
    max-height: 220px;
  }

  #featured .product-card .product-image-wrap img,
  #best .product-card .product-image-wrap img {
    filter: drop-shadow(0 6px 14px rgba(28, 34, 40, 0.1));
  }
}

/* Featured products mobile alignment fix (targeted override) */
@media (max-width: 980px) {
  #featured .product-grid {
    overflow-x: clip;
  }

  #featured .product-card {
    min-width: 0;
    overflow: hidden;
  }

  #featured .product-card .product-image-wrap {
    display: grid;
    place-items: center;
    inline-size: 100%;
    block-size: auto;
    aspect-ratio: 1 / 1;
    min-height: clamp(176px, 46vw, 248px);
    max-height: 248px;
    overflow: hidden;
  }

  #featured .product-card .product-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
    transform: none;
    padding: clamp(6px, 1.8vw, 10px);
  }
}

@media (max-width: 640px) {
  #featured .product-card .product-image-wrap {
    min-height: clamp(164px, 54vw, 216px);
    max-height: 216px;
  }
}

@media (max-width: 414px) {
  #featured .product-card .product-image-wrap {
    min-height: clamp(156px, 56vw, 206px);
    max-height: 206px;
  }
}

@media (max-width: 390px) {
  #featured .product-card .product-image-wrap {
    min-height: clamp(150px, 57vw, 198px);
    max-height: 198px;
  }
}

@media (max-width: 360px) {
  #featured .product-card .product-image-wrap {
    min-height: clamp(146px, 58vw, 190px);
    max-height: 190px;
  }
}

@media (max-width: 320px) {
  #featured .product-card .product-image-wrap {
    min-height: clamp(138px, 59vw, 178px);
    max-height: 178px;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card-sales {
  margin-top: auto;
  padding: 0 16px 16px;
  display: grid;
  gap: 10px;
}

.product-card-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card-price-current {
  font-size: 1.04rem;
  line-height: 1.2;
  color: var(--accent);
  font-weight: 800;
}

.product-card-price-old {
  color: #7f8790;
  text-decoration: line-through;
  font-size: 0.86rem;
}

.product-card-discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1f4b1a;
  background: linear-gradient(135deg, #d3f4ce 0%, #b5e7ad 100%);
  border: 1px solid #9ed697;
}

.product-card-actions {
  display: grid;
  gap: 8px;
}

.product-card-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.product-card-add-btn {
  width: 100%;
  min-height: 42px;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  padding: 10px 14px;
}

.product-card-go-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  padding: 10px 14px;
  text-align: center;
}

.product-card-feedback {
  margin: 0;
  min-height: 16px;
  font-size: 0.74rem;
}

@media (max-width: 980px) {
  .product-card-sales {
    padding: 0 12px 12px;
    gap: 8px;
  }

  .product-card-price-current {
    font-size: 0.96rem;
  }

  .product-card-price-old {
    font-size: 0.8rem;
  }

  .product-card-discount-badge {
    font-size: 0.68rem;
    padding: 2px 7px;
  }

  .product-card-add-btn {
    min-height: 38px;
    font-size: 0.82rem;
    padding: 9px 12px;
  }

  .product-card-go-btn {
    min-height: 38px;
    font-size: 0.82rem;
    padding: 9px 12px;
  }
}

@media (max-width: 640px) {
  .product-card-buttons {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Single hero image: 1920x800 (12:5) responsive fit */
/* Single hero image: responsive fit */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image-wrap {
    order: 2;
    aspect-ratio: 12 / 5;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-image-wrap {
    aspect-ratio: 4 / 5;
  }

  .hero-image {
    height: 100%;
    transform: scale(1.01);
  }

  .hero-image-wrap:hover .hero-image {
    transform: scale(1.01);
  }
}

/* Mobile banner interaction and spacing fix: keep CTA away from nav arrows. */
@media (max-width: 640px) {
  .banner-slide-content {
    justify-content: flex-end;
    padding: 20px 64px 78px;
    z-index: 5;
    pointer-events: none;
  }

  .banner-slide-link {
    pointer-events: auto;
  }

  .banner-nav-button {
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
  }

  .banner-prev {
    left: 10px;
  }

  .banner-next {
    right: 10px;
  }

  .banner-dots {
    bottom: 14px;
    z-index: 11;
  }
}

/* ─── WhatsApp Float Button ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: clamp(72px, 9.5vw, 88px);
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.42), 0 2px 8px rgba(0, 0, 0, 0.16);
  z-index: 1699;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.55), 0 4px 14px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  display: block;
}

@media (max-width: 980px) {
  .whatsapp-float {
    right: 66px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
