.overlay-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(20, 20, 20, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base);
  z-index: 90;
}

.overlay-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background-color: var(--bg-surface);
  box-shadow: var(--shadow-strong);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: 95;
  display: flex;
  flex-direction: column;
}

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

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5);
  border-bottom: 1px solid var(--border-soft);
}

.cart-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-5);
}

.cart-line-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: var(--space-3);
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-soft);
}

.cart-line-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-elevated);
}

.cart-line-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.cart-line-price {
  font-size: 13px;
  color: var(--accent-primary-strong);
  font-weight: 600;
}

.cart-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-top: var(--space-2);
}

.cart-qty-control button {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.cart-qty-control span {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
}

.cart-line-remove {
  color: var(--text-muted);
  font-size: 12px;
}

.cart-line-remove:hover {
  color: #C0392B;
}

.cart-panel-footer {
  padding: var(--space-5);
  border-top: 1px solid var(--border-soft);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  font-size: 16px;
  font-weight: 700;
}

.cart-empty-state {
  text-align: center;
  padding: var(--space-7) var(--space-4);
  color: var(--text-muted);
}

.a11y-toggle-btn {
  position: fixed;
  bottom: var(--space-5);
  left: var(--space-5);
  width: 54px;
  height: 54px;
  border-radius: var(--radius-pill);
  background-color: #1A5FB4;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  z-index: 80;
}

.a11y-toggle-btn .material-symbols-outlined {
  font-size: 28px;
}

.a11y-panel {
  position: fixed;
  bottom: calc(var(--space-5) + 64px);
  left: var(--space-5);
  width: min(300px, 86vw);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: var(--space-4);
  z-index: 80;
  display: none;
}

.a11y-panel.is-open {
  display: block;
}

.a11y-panel h4 {
  font-size: 15px;
  margin-bottom: var(--space-3);
}

.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border-soft);
}

.a11y-row:last-child {
  border-bottom: none;
}

.a11y-row span {
  font-size: 13px;
}

.a11y-btn-group {
  display: flex;
  gap: var(--space-1);
}

.a11y-btn-group button {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-elevated);
  font-size: 12px;
  font-weight: 700;
}

.a11y-btn-group button.is-active {
  background-color: var(--accent-primary);
  color: var(--color-ink-900);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-soft);
  box-shadow: var(--shadow-strong);
  padding: var(--space-4) var(--space-5);
  z-index: 85;
  display: none;
}

.cookie-banner.is-open {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 240px;
  font-size: 13px;
  color: var(--text-secondary);
}

.cookie-banner-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.cookie-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}

.cookie-settings-modal.is-open {
  display: flex;
}

.cookie-settings-box {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: var(--space-5);
  box-shadow: var(--shadow-strong);
}

.cookie-category-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-soft);
}

.toggle-switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch-slider {
  position: absolute;
  inset: 0;
  background-color: var(--border-soft);
  border-radius: var(--radius-pill);
  transition: background-color var(--transition-fast);
}

.toggle-switch-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.toggle-switch input:checked + .toggle-switch-slider {
  background-color: var(--accent-secondary);
}

.toggle-switch input:checked + .toggle-switch-slider::before {
  transform: translateX(18px);
}

.toggle-switch input:disabled + .toggle-switch-slider {
  background-color: var(--accent-primary);
  opacity: 0.6;
}

.google-review-popup {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  width: min(320px, 88vw);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: var(--space-5);
  z-index: 88;
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.google-review-popup.is-open {
  display: block;
}

.google-review-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.google-review-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  color: var(--text-muted);
}

.google-review-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background-color: var(--bg-elevated);
  color: var(--accent-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.google-review-icon .material-symbols-outlined {
  font-size: 26px;
}

.google-review-popup h4 {
  margin-bottom: var(--space-2);
  font-size: 17px;
}

.google-review-popup p {
  font-size: 13px;
  margin-bottom: var(--space-4);
}

.google-review-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.google-review-popup {
  position: fixed;
  bottom: var(--space-5);
  left: var(--space-5);
  width: min(320px, 88vw);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: var(--space-5);
  z-index: 88;
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.google-review-popup.is-open {
  display: block;
}

.google-review-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.google-review-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  color: var(--text-muted);
}

.google-review-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background-color: var(--bg-elevated);
  color: var(--accent-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.google-review-icon .material-symbols-outlined {
  font-size: 26px;
  font-variation-settings: 'FILL' 1;
}

.google-review-popup h4 {
  margin-bottom: var(--space-2);
  font-size: 17px;
}

.google-review-popup p {
  font-size: 13px;
  margin-bottom: var(--space-4);
}

.google-review-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

@media (max-width: 600px) {
  .google-review-popup {
    left: var(--space-3);
    right: var(--space-3);
    width: auto;
    bottom: var(--space-3);
  }
}

.a11y-close-btn {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.a11y-close-btn:hover {
  color: var(--accent-primary-strong);
}

/* Faz F: Kampanya popup */
.site-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 11, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.site-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.site-popup-box {
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 380px;
  width: 90%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.site-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #FFFFFF;
  border: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.site-popup-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}
.site-popup-body {
  padding: 22px;
  text-align: center;
}
.site-popup-body h3 {
  font-family: 'Playfair Display', serif;
  color: #6B2E2C;
  margin: 0 0 14px;
  font-size: 19px;
}

/* Sol kenar sosyal medya cubugu */
.social-side-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.social-side-tab-toggle {
  width: 32px;
  height: 46px;
  background: #6B2E2C;
  color: #FFFFFF;
  border: none;
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.social-side-tab-toggle svg {
  width: 16px;
  height: 16px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}
.social-side-tab.is-open .social-side-tab-toggle svg {
  transform: rotate(180deg);
}
.social-side-tab-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 10px;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}
.social-side-tab.is-open .social-side-tab-icons {
  max-height: 280px;
  opacity: 1;
}
.social-side-tab-icon {
  position: relative;
  width: 38px;
  height: 38px;
  background: #FFFFFF;
  border: 1px solid #E6D7C8;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-8px);
  transition: width 0.25s ease, background 0.25s ease, border-color 0.25s ease,
              opacity 0.25s ease, transform 0.25s ease;
}
.social-side-tab.is-open .social-side-tab-icon {
  opacity: 1;
  transform: translateX(0);
}
.social-side-tab.is-open .social-side-tab-icon:nth-child(1) { transition-delay: 0.04s; }
.social-side-tab.is-open .social-side-tab-icon:nth-child(2) { transition-delay: 0.09s; }
.social-side-tab.is-open .social-side-tab-icon:nth-child(3) { transition-delay: 0.14s; }
.social-side-tab.is-open .social-side-tab-icon:nth-child(4) { transition-delay: 0.19s; }
.social-side-tab-icon:hover {
  width: 136px;
}
.social-side-tab-icon svg {
  width: 17px;
  height: 17px;
  stroke: #6B2E2C;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: stroke 0.2s ease;
}
.social-side-tab-label {
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  margin-left: 0;
  transition: max-width 0.25s ease, opacity 0.2s ease, margin-left 0.2s ease;
}
.social-side-tab-icon:hover .social-side-tab-label {
  max-width: 90px;
  opacity: 1;
  margin-left: 9px;
}
.platform-tiktok:hover { background: #000000; border-color: #000000; }
.platform-tiktok:hover svg { stroke: #FFFFFF; }
.platform-instagram:hover { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); border-color: transparent; }
.platform-instagram:hover svg { stroke: #FFFFFF; }
.platform-x:hover { background: #000000; border-color: #000000; }
.platform-x:hover svg { stroke: #FFFFFF; }
.platform-facebook:hover { background: #1877F2; border-color: #1877F2; }
.platform-facebook:hover svg { stroke: #FFFFFF; }

/* Ust bilgi seridi: duyuru + randevu */
.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #6B2E2C;
  color: #F1E4D8;
  font-size: 12.5px;
  padding: 7px 18px;
  gap: 16px;
}
.utility-bar-ticker {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
}
.utility-bar-ticker span {
  display: inline-block;
  padding-right: 60px;
  animation: utility-bar-scroll 18s linear infinite;
}
@keyframes utility-bar-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.utility-bar-cta {
  flex-shrink: 0;
  background: #2F6F52;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 99px;
  text-decoration: none;
  white-space: nowrap;
}
.utility-bar-cta:hover {
  background: #265c43;
}
@media (prefers-reduced-motion: reduce) {
  .utility-bar-ticker span {
    animation: none;
  }
}

/* Urun karti miktar secici */
.qty-stepper {
  display: flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.qty-stepper-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: #FFFFFF;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-maroon);
  line-height: 1;
}
.qty-stepper-btn:hover {
  background: var(--cream);
}
.qty-stepper-value {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
}
