/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--charcoal);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.slide-1 {
  background: linear-gradient(135deg, #2c2520 0%, #3d2e28 50%, #4a3530 100%);
}
.slide-2 {
  background: linear-gradient(135deg, #1a1f2e 0%, #2c3345 50%, #1a2035 100%);
}
.slide-3 {
  background: linear-gradient(135deg, #1e2418 0%, #2a3220 50%, #1e2418 100%);
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(201, 168, 154, 0.12) 0%,
    transparent 60%
  );
}

.slide-content {
  flex: 1;
  padding: 0 80px 0 120px;
  z-index: 2;
  animation: slideIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  border-left: 2px solid var(--rose);
  padding-left: 12px;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.slide-title em {
  font-style: italic;
  color: var(--rose);
}

.slide-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.slide-visual {
  flex: 0 0 42%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.slide-img-wrap {
  width: 380px;
  height: 520px;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  position: relative;
}

.slide-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s linear;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
  backdrop-filter: blur(8px);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev {
  left: 32px;
}
.slider-next {
  right: 32px;
}

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

.dot {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--rose);
  width: 56px;
}

.slide-img-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 48px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.trust-text span {
  font-size: 12px;
  color: var(--charcoal-light);
}

.trust-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== KATEGORİLER ===== */
.categories-section {
  padding: 100px 0 80px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
}

.cat-card .cat-img {
  position: absolute;
  inset: 0;
}

.cat-card .cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 37, 32, 0.75) 0%,
    rgba(44, 37, 32, 0.1) 50%,
    transparent 100%
  );
  transition: opacity var(--transition);
}

.cat-card:hover .cat-img img {
  transform: scale(1.08);
}

.cat-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  z-index: 2;
}

.cat-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.cat-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cat-link::after {
  content: "→";
  transition: transform var(--transition);
}

.cat-card:hover .cat-link::after {
  transform: translateX(4px);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== FEATURED SECTION ===== */
.featured-section {
  padding: 80px 0;
  background: var(--blush);
}

/* ===== BESTSELLERS ===== */
.bestsellers-section {
  padding: 80px 0;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: var(--charcoal);
  padding: 80px 0;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.promo-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin: 12px 0;
}

.promo-title em {
  font-style: italic;
  color: var(--gold);
}

.promo-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.email-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 420px;
}

.email-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}

.email-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slide-content {
    padding: 0 40px;
  }
  .slide-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    flex-direction: column;
    gap: 20px;
  }
  .trust-sep {
    width: 40px;
    height: 1px;
  }
  .trust-item {
    padding: 0;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-inner {
    flex-direction: column;
  }
  .email-form {
    width: 100%;
  }
  .slide-content {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .slide-title {
    font-size: 32px;
  }

  .slide-desc {
    font-size: 14px;
  }

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