/* ============================================
   MODAVISTA — Premium Kadın Giyim E-Ticaret
   Tasarım Dili: Sade, temiz, beyaz zemin
   ============================================ */

/* ---------- CSS Değişkenleri ---------- */
:root {
  --color-bg: #ffffff;
  --color-text: #2d2d2d;
  --color-text-light: #6b6b6b;
  --color-text-muted: #999999;
  --color-border: #eeeeee;
  --color-border-dark: #dddddd;
  --color-accent: #1a1a1a;
  --color-accent-hover: #333333;
  --color-highlight: #d4849a;
  --color-highlight-light: #fdf0f3;
  --color-bg-light: #fafafa;
  --color-bg-warm: #fdf8f9;
  --color-danger: #d32f2f;
  --color-success: #2e7d32;
  --color-white: #ffffff;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;

  --container: 1440px;
  --header-height: 76px;
}

/* ---------- Reset & Temel ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Kampanya Duyuru Barı ---------- */
.announcement-bar {
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.announcement-bar__track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.announcement-bar__item {
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
  gap: 8px;
}

.announcement-bar__item::before {
  content: '★';
  color: var(--color-highlight);
  font-size: 10px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- Header ---------- */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-family: var(--font-display);
  color: var(--color-accent);
  flex-shrink: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-transform: uppercase;
}

.header__logo-main {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 5px;
}

.header__logo-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--color-highlight);
  margin-top: 2px;
}

.header__logo:hover {
  color: var(--color-highlight);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.header__nav-item {
  position: relative;
  padding: 0 16px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.4px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.header__nav-item:hover {
  color: var(--color-highlight);
}

.header__nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--color-highlight);
  transition: transform 0.3s ease;
}

.header__nav-item:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.header__nav-item--sale {
  color: var(--color-danger);
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.header__icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  color: var(--color-text);
  position: relative;
}

.header__icon-btn:hover {
  background: var(--color-bg-light);
  color: var(--color-highlight);
}

.header__icon-btn svg {
  width: 20px;
  height: 20px;
}

.header__cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-highlight);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger (mobil) */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.header__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
  border-radius: 2px;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Mega Menü ---------- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 999;
}

.header__nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.mega-menu__column {
  min-width: 200px;
}

.mega-menu__column h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-menu__column a {
  display: block;
  font-size: 13.5px;
  color: var(--color-text-light);
  padding: 5px 0;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.mega-menu__column a:hover {
  color: var(--color-highlight);
  padding-left: 6px;
}

/* ---------- Hero Slider ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-warm);
}

.hero__slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/6;
  display: flex;
  align-items: center;
}

.hero__slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slide-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide--placeholder {
  background: linear-gradient(135deg, #f5efe6 0%, #e8ddd0 50%, #d4c5b0 100%);
}

.hero__slide-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 600px;
}

.hero__slide-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__slide-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  font-weight: 300;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero__slide-cta {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-accent);
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hero__slide-cta:hover {
  background: var(--color-highlight);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero__dot.active {
  background: var(--color-white);
  transform: scale(1.2);
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hero__arrow--prev {
  left: 24px;
}

.hero__arrow--next {
  right: 24px;
}

/* ---------- Bölüm Başlıkları ---------- */
.section {
  padding: 72px 0;
}

.section--gray {
  background: var(--color-bg-light);
}

.section--warm {
  background: var(--color-bg-warm);
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section__subtitle {
  font-size: 15px;
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0 auto;
}

.section__divider {
  width: 50px;
  height: 2px;
  background: var(--color-highlight);
  margin: 16px auto 0;
}

/* ---------- Kategori Kartları ---------- */
.category-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.category-card__placeholder--takim {
  background: linear-gradient(135deg, #fdf0f3, #f5d5de);
}

.category-card__placeholder--ust-giyim {
  background: linear-gradient(135deg, #f0e8f5, #ddd0e8);
}

.category-card__placeholder--elbise {
  background: linear-gradient(135deg, #f5e6ee, #e8d0dd);
}

.category-card__placeholder--aksesuar {
  background: linear-gradient(135deg, #f5e6ee, #e8d0dd);
}

.category-card__placeholder--abaya {
  background: linear-gradient(135deg, #2d2d2d, #4a4a4a);
}

.category-card__placeholder--alt-giyim {
  background: linear-gradient(135deg, #f5eef0, #e8dde0);
}

.category-card:hover .category-card__image,
.category-card:hover .category-card__placeholder {
  transform: scale(1.06);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%);
  transition: var(--transition);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1) 60%);
}

.category-card__name {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

/* ---------- Ürün Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--color-bg-light);
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: linear-gradient(135deg, var(--color-bg-light), var(--color-bg-warm));
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-danger);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.product-card__quick-view {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--color-accent);
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.product-card:hover .product-card__quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card__quick-view:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.8);
}

.product-card:hover .product-card__wishlist {
  opacity: 1;
  transform: scale(1);
}

.product-card__wishlist:hover {
  background: var(--color-danger);
  color: var(--color-white);
}

.product-card__wishlist svg {
  width: 18px;
  height: 18px;
}

.product-card__info {
  padding: 16px 18px 20px;
}

.product-card__brand {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.product-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.product-card__name a:hover {
  color: var(--color-highlight);
}

.product-card__price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.product-card__price {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-accent);
}

.product-card__old-price {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-card__add-to-cart {
  width: 100%;
  padding: 11px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.product-card__add-to-cart:hover {
  background: var(--color-highlight);
  transform: translateY(-1px);
}

/* ---------- Yorum Carousel ---------- */
.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--color-highlight);
  font-size: 18px;
}

.testimonial-card__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.5px;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border-dark);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonials__dot.active {
  background: var(--color-highlight);
  transform: scale(1.3);
}

/* ---------- Güven Unsurları ---------- */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-badge {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.trust-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-highlight);
}

.trust-badge__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-highlight-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-highlight);
}

.trust-badge__icon svg {
  width: 26px;
  height: 26px;
}

.trust-badge__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.trust-badge__text {
  font-size: 13px;
  color: var(--color-text-light);
}

/* ---------- Marka Tanıtım ---------- */
.brand-story {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.brand-story__description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.brand-story__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}

.brand-story__highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--color-bg-light);
}

.brand-story__highlight::before {
  content: '✓';
  color: var(--color-highlight);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- İletişim Formu ---------- */
.contact-form-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__field {
  position: relative;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
  outline: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-highlight);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__submit {
  padding: 15px 40px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: var(--transition);
  align-self: center;
}

.contact-form__submit:hover {
  background: var(--color-highlight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-accent);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer__column-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  transition: var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-highlight);
  padding-left: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__payments {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__payment-icon {
  width: 48px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* ---------- Mobil Menü Overlay ---------- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--color-white);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  padding: 24px;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-light);
  margin-bottom: 24px;
  margin-left: auto;
  font-size: 14px;
}

.mobile-nav__item {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav__item:hover {
  color: var(--color-highlight);
}

.mobile-nav__sub-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav__sub-toggle::after {
  content: '+';
  font-size: 18px;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.mobile-nav__sub-toggle.active::after {
  content: '−';
}

.mobile-nav__submenu {
  display: none;
  padding-left: 16px;
}

.mobile-nav__submenu.active {
  display: block;
}

.mobile-nav__submenu a {
  display: block;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--color-text-light);
}

.mobile-nav__submenu a:hover {
  color: var(--color-highlight);
}

/* ---------- Ürün Detay Sayfası ---------- */
.product-detail {
  padding: 40px 0 80px;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail__image-wrapper {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-warm);
}

.product-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, var(--color-bg-light), var(--color-bg-warm));
}

.product-detail__info {
  padding-top: 20px;
}

.product-detail__breadcrumb {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.product-detail__breadcrumb a:hover {
  color: var(--color-highlight);
}

.product-detail__brand {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.product-detail__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-detail__price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.product-detail__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
}

.product-detail__old-price {
  font-size: 18px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-detail__description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.product-detail__actions {
  display: flex;
  gap: 12px;
}

.product-detail__add-to-cart {
  flex: 1;
  padding: 16px 32px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.product-detail__add-to-cart:hover {
  background: var(--color-highlight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.product-detail__wishlist-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.product-detail__wishlist-btn:hover {
  border-color: var(--color-danger);
  color: var(--color-danger);
}

/* ---------- Kategori Sayfası ---------- */
.category-page {
  padding: 40px 0 80px;
}

.category-page__breadcrumb {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.category-page__breadcrumb a:hover {
  color: var(--color-highlight);
}

.category-page__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.category-page__count {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

/* ---------- Arama Overlay ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay__inner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 90%;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.search-overlay.active .search-overlay__inner {
  transform: translateY(0);
}

.search-overlay__input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.search-overlay__input:focus {
  border-color: var(--color-highlight);
}

.search-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

/* ---------- Yükleniyor Animasyonu ---------- */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.loading__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-highlight);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .header__nav-item {
    padding: 0 10px;
    font-size: 12.5px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .category-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 62px;
  }

  .section {
    padding: 48px 0;
  }

  .section__title {
    font-size: 24px;
  }

  .hero__slide {
    aspect-ratio: 16/9;
  }

  .hero__slide-title {
    font-size: 28px;
  }

  .hero__slide-content {
    padding: 0 32px;
  }

  .hero__arrow {
    width: 36px;
    height: 36px;
  }

  .category-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-card__info {
    padding: 12px 14px 16px;
  }

  .product-card__name {
    font-size: 13px;
  }

  .product-card__price {
    font-size: 15px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .brand-story__highlights {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header__logo-main {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .header__logo-sub {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .hero__slide {
    aspect-ratio: 4/5;
  }

  .hero__slide-title {
    font-size: 24px;
  }

  .hero__slide-cta {
    padding: 12px 28px;
    font-size: 12px;
  }

  .category-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card__quick-view {
    display: none;
  }

  .section__title {
    font-size: 22px;
  }
}

/* ============================================
   DİNAMİK ANİMASYONLAR & EFEKTLER
   ============================================ */

/* ---------- Scroll Reveal Animasyonları ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Kademeli gecikme — grid kartlarına */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

.reveal-delay-7 {
  transition-delay: 0.7s;
}

.reveal-delay-8 {
  transition-delay: 0.8s;
}

/* ---------- Shimmer Efekti (Ürün Kartları) ---------- */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);
  transition: left 0.6s ease;
  z-index: 10;
  pointer-events: none;
}

.product-card:hover::before {
  left: 100%;
}

/* ---------- Bölüm Ayracı — Animasyonlu Çizgi ---------- */
.section__divider {
  width: 0;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.section__header.visible .section__divider {
  width: 60px;
}

/* ---------- CTA Buton Pulse Efekti ---------- */
.hero__slide-cta {
  position: relative;
  overflow: hidden;
}

.hero__slide-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(212, 132, 154, 0.5);
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 132, 154, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(212, 132, 154, 0);
  }
}

/* ---------- Sepete Ekle Buton Animasyonu ---------- */
.product-card__add-to-cart {
  position: relative;
  overflow: hidden;
}

.product-card__add-to-cart::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: width 0.4s ease, height 0.4s ease;
  transform: translate(-50%, -50%);
}

.product-card__add-to-cart:hover::before {
  width: 300px;
  height: 300px;
}

/* ---------- Kategori Kartları Gelişmiş Efekt ---------- */
.category-card__name {
  transform: translateY(8px);
  transition: transform 0.4s ease, letter-spacing 0.4s ease;
}

.category-card:hover .category-card__name {
  transform: translateY(0);
  letter-spacing: 3px;
}

/* ---------- Güven Badge Animasyonu ---------- */
.trust-badge__icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease;
}

.trust-badge:hover .trust-badge__icon {
  transform: scale(1.15) rotate(-5deg);
  background: var(--color-highlight);
  color: var(--color-white);
}

/* ---------- Footer Link Animasyonu ---------- */
.footer__link {
  position: relative;
}

.footer__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-highlight);
  transition: width 0.3s ease;
}

.footer__link:hover::before {
  width: 100%;
}

/* ---------- İletişim Formu Input Animasyonu ---------- */
.contact-form__input,
.contact-form__textarea {
  position: relative;
}

.contact-form__field {
  position: relative;
}

.contact-form__field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-highlight);
  transition: width 0.3s ease, left 0.3s ease;
}

.contact-form__field:focus-within::after {
  width: 100%;
  left: 0;
}

/* ---------- Yorum Kartı Giriş Animasyonu ---------- */
.testimonial-card__text {
  position: relative;
}

.testimonial-card__text::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--color-highlight);
  opacity: 0.2;
  line-height: 1;
}

/* ---------- Ödeme İkon Hover ---------- */
.footer__payment-icon {
  transition: var(--transition);
}

.footer__payment-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ---------- Header İkon Tooltip ---------- */
.header__icon-btn {
  position: relative;
}

.header__icon-btn::after {
  content: attr(aria-label);
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

.header__icon-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Parallax Arka Plan (Hero) ---------- */
.hero__slide-image {
  transition: transform 8s linear;
}

.hero__slide.active .hero__slide-image {
  transform: scale(1.05);
}

/* ---------- Sepet Badge Bounce ---------- */
@keyframes cartBounce {

  0%,
  100% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.4);
  }

  60% {
    transform: scale(0.9);
  }
}

.header__cart-badge.bounce {
  animation: cartBounce 0.5s ease;
}

/* ---------- Duyuru Barı Parıltı ---------- */
.announcement-bar {
  position: relative;
  overflow: hidden;
}

.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: announcementShine 4s ease-in-out infinite;
}

@keyframes announcementShine {

  0%,
  100% {
    left: -40%;
  }

  50% {
    left: 100%;
  }
}

/* ---------- Sayfa Geçiş Animasyonu ---------- */
#app {
  animation: pageIn 0.4s ease;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CHECKOUT & ÖDEME SAYFALARI
   ============================================ */

/* ---------- Checkout Genel ---------- */
.checkout {
  padding: 32px 0 80px;
}

.checkout__breadcrumb {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.checkout__breadcrumb a:hover {
  color: var(--color-highlight);
}

.checkout__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 36px;
}

.checkout__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* ---------- Boş Sepet ---------- */
.checkout__empty {
  text-align: center;
  padding: 80px 24px;
}

.checkout__empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.checkout__empty h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 10px;
}

.checkout__empty p {
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.checkout__continue-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.checkout__continue-btn:hover {
  background: var(--color-highlight);
  transform: translateY(-2px);
}

/* ---------- Checkout Bölümler ---------- */
.checkout__section {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.checkout__section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout__step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-highlight);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Checkout Form ---------- */
.checkout__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout__form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout__form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkout__form-field input,
.checkout__form-field textarea {
  padding: 12px 16px;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  outline: none;
  transition: var(--transition);
}

.checkout__form-field input:focus,
.checkout__form-field textarea:focus {
  border-color: var(--color-highlight);
  box-shadow: 0 0 0 3px rgba(212, 132, 154, 0.12);
}

.checkout__form-field textarea {
  resize: vertical;
  min-height: 80px;
}

/* ---------- Ödeme Yöntemleri ---------- */
.checkout__payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout__payment-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.checkout__payment-option input[type="radio"] {
  display: none;
}

.checkout__payment-option:hover {
  border-color: var(--color-highlight);
}

.checkout__payment-option--active {
  border-color: var(--color-highlight);
  background: var(--color-highlight-light);
}

.checkout__payment-option-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.checkout__payment-logo svg {
  width: 80px;
  height: 28px;
}

.checkout__payment-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
}

.checkout__payment-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.checkout__payment-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-border);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}

.checkout__payment-option--active .checkout__payment-check {
  background: var(--color-highlight);
  color: var(--color-white);
}

/* ---------- Sözleşme ---------- */
.checkout__agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.5;
}

.checkout__agreement input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-highlight);
  flex-shrink: 0;
}

.checkout__agreement a {
  color: var(--color-highlight);
  text-decoration: underline;
}

/* ---------- Sipariş Özeti ---------- */
.checkout__summary {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.checkout__summary-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.checkout__summary-items {
  max-height: 300px;
  overflow-y: auto;
}

.checkout__summary-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

.checkout__summary-item:last-child {
  border-bottom: none;
}

.checkout__summary-item-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.checkout__summary-item-info {
  flex: 1;
  min-width: 0;
}

.checkout__summary-item-brand {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkout__summary-item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 2px 0 6px;
}

.checkout__summary-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.checkout__qty-btn {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--color-white);
}

.checkout__qty-btn:hover {
  border-color: var(--color-highlight);
  color: var(--color-highlight);
}

.checkout__summary-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.checkout__summary-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}

.checkout__summary-item-remove {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.4;
  transition: var(--transition-fast);
}

.checkout__summary-item-remove:hover {
  opacity: 1;
  color: var(--color-danger);
}

.checkout__summary-item-remove svg {
  width: 14px;
  height: 14px;
}

.checkout__summary-divider {
  height: 1px;
  background: var(--color-border);
  margin: 16px 0;
}

.checkout__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--color-text-light);
  padding: 4px 0;
}

.checkout__summary-row--total {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  padding: 8px 0;
}

.checkout__free-shipping {
  color: var(--color-success);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.checkout__shipping-note {
  font-size: 12px;
  color: var(--color-highlight);
  padding: 8px 12px;
  background: var(--color-highlight-light);
  border-radius: var(--radius-sm);
  margin-top: 8px;
  text-align: center;
}

/* ---------- Ödemeye Geç Butonu ---------- */
.checkout__pay-btn {
  width: 100%;
  padding: 16px;
  background: var(--color-highlight);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.checkout__pay-btn:hover:not(:disabled) {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.checkout__pay-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.checkout__pay-btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkout__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

.checkout__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 14px;
}

.checkout__secure svg {
  width: 16px;
  height: 16px;
  color: var(--color-success);
}

/* ---------- Ödeme Sonuç Sayfası ---------- */
.payment-result {
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.payment-result__card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.payment-result__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-result__icon svg {
  width: 52px;
  height: 52px;
}

.payment-result__icon--success {
  background: #e8f5e9;
  color: var(--color-success);
}

.payment-result__icon--failure {
  background: #ffebee;
  color: var(--color-danger);
}

.payment-result__checkmark {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.6s ease 0.3s forwards;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.payment-result__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.payment-result__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.payment-result__order-id {
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 12px 20px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  display: inline-block;
}

.payment-result__order-id strong {
  color: var(--color-accent);
}

.payment-result__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-result__btn {
  padding: 13px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.payment-result__btn--primary {
  background: var(--color-highlight);
  color: var(--color-white);
}

.payment-result__btn--primary:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.payment-result__btn--secondary {
  background: var(--color-bg-light);
  color: var(--color-text);
  border: 1px solid var(--color-border-dark);
}

.payment-result__btn--secondary:hover {
  border-color: var(--color-highlight);
  color: var(--color-highlight);
}

/* ---------- Checkout Responsive ---------- */
@media (max-width: 992px) {
  .checkout__grid {
    grid-template-columns: 1fr;
  }

  .checkout__summary {
    position: static;
  }
}

@media (max-width: 480px) {
  .checkout__form-row {
    grid-template-columns: 1fr;
  }

  .checkout__section {
    padding: 20px;
  }

  .checkout__summary {
    padding: 20px;
  }
}