/* ===== Keskin Salça — Temel stiller ===== */
:root {
  --color-bg: #faf6f1;
  --color-bg-soft: #f3ebe3;
  --color-surface: #ffffff;
  --color-text: #2c1810;
  --color-text-muted: #6d574c;
  --color-cream: #2c1810;
  --color-cream-muted: #6d574c;
  --color-red: #c42b2b;
  --color-red-bright: #d63a3a;
  --color-orange: #d96a20;
  --color-gold: #b8862e;
  --color-green: #5a8f5c;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 16px 48px rgba(44, 24, 16, 0.1);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-red-bright), var(--color-orange));
  color: #fff;
  box-shadow: 0 8px 32px rgba(232, 69, 69, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(232, 69, 69, 0.5);
}

.btn--outline {
  border-color: rgba(44, 24, 16, 0.2);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  border-color: var(--color-red-bright);
  background: #fff;
}

.btn--small {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

.btn--light {
  background: var(--color-cream);
  color: var(--color-bg);
  box-shadow: none;
}

.text-gradient {
  background: linear-gradient(120deg, var(--color-red-bright), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
  box-shadow: 0 4px 24px rgba(44, 24, 16, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.logo strong {
  color: var(--color-red-bright);
  font-weight: 700;
}

.logo__icon {
  font-size: 1.5rem;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-cream-muted);
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--color-cream);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
  filter: blur(1px) brightness(0.92) saturate(1.15);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(250, 246, 241, 0.88) 0%,
      rgba(250, 246, 241, 0.55) 42%,
      rgba(250, 246, 241, 0.2) 70%,
      rgba(250, 246, 241, 0.08) 100%
    ),
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(232, 122, 46, 0.12), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a84a10;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 106, 32, 0.35);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.08);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #1a0e08;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

.hero__desc {
  font-size: 1.15rem;
  font-weight: 500;
  color: #3d2818;
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.65;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  list-style: none;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 24, 16, 0.1);
}

.hero__stats li {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a352c;
}

.hero__stats strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a0e08;
  margin-bottom: 0.15rem;
}

/* ----- Section head ----- */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a84a10;
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1a0e08;
  margin-bottom: 0.75rem;
}

.section-head p {
  font-weight: 500;
  color: #4a352c;
  max-width: 480px;
  margin-inline: auto;
}

/* ----- Products ----- */
.products {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg-soft);
  overflow: hidden;
}

.products::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("image2/arka-plan.jpeg") center / cover no-repeat;
  opacity: 0.14;
  filter: blur(3px) brightness(1.05);
  transform: scale(1.05);
  pointer-events: none;
}

.products .container {
  position: relative;
  z-index: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(44, 24, 16, 0.08);
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 69, 69, 0.2);
}

.product-card__visual {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-soft);
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.25) 0%, transparent 45%);
  pointer-events: none;
}

.product-card:hover .product-card__visual img {
  transform: scale(1.06);
}

.product-card__price {
  margin-top: 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-gold);
}

.product-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.product-card__body h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a0e08;
  margin-bottom: 0.4rem;
}

.product-card__emoji {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.product-card__emoji--large {
  font-size: 4rem;
  filter: drop-shadow(0 6px 16px rgba(44, 24, 16, 0.12));
}

.product-card__visual--emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f8efe6 0%, #edd9c8 50%, #f3ebe3 100%);
}

.product-card__visual--emoji::after {
  display: none;
}

.product-card__body p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a352c;
  line-height: 1.55;
}

.product-card__tag {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(212, 162, 74, 0.2);
  color: var(--color-gold);
  border-radius: 6px;
}

.product-card__tag--hot {
  background: rgba(232, 69, 69, 0.2);
  color: var(--color-red-bright);
}

/* ----- Features ----- */
.features {
  padding: 6rem 0;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1a0e08;
  margin: 0.5rem 0 1rem;
}

.features__text > p {
  font-weight: 500;
  color: #4a352c;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.features__list {
  list-style: none;
}

.features__list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #3d2818;
}

.features__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
}

.features__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.features__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(44, 24, 16, 0.08);
  box-shadow: var(--shadow);
  position: relative;
}

.features__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
}

.features__photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-cream);
  background: linear-gradient(to top, rgba(15, 10, 8, 0.85), transparent);
}

.features__photo--main img {
  min-height: 200px;
  max-height: 320px;
}

.features__photo--side img {
  min-height: 160px;
  max-height: 220px;
}

/* ----- CTA banner ----- */
.cta-banner {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.85) saturate(1.1);
  transform: scale(1.05);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(214, 58, 58, 0.82) 0%, rgba(180, 50, 30, 0.78) 50%, rgba(217, 106, 32, 0.8) 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 56px rgba(196, 43, 43, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.cta-banner__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-inline: auto;
}

/* ----- Footer ----- */
.footer {
  padding: 4rem 0 0;
  border-top: 1px solid rgba(44, 24, 16, 0.08);
  background: #ebe3d8;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-cream-muted);
  max-width: 280px;
}

/* ----- Social links ----- */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(44, 24, 16, 0.1);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.social-btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: transparent;
}

.social-btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.social-btn--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}

.social-btn--facebook {
  background: #1877f2;
  color: #fff;
}

.social-btn--soon {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.3);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

.logo--footer {
  font-size: 1.2rem;
}

.footer__col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-cream-muted);
  margin-bottom: 1rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-cream-muted);
}

.footer__col a:hover {
  color: var(--color-cream);
}

.footer__bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(44, 24, 16, 0.08);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-cream-muted);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .features__gallery {
    order: -1;
  }

  .features__photo--main img {
    min-height: 180px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .header__cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 85vw);
    height: 100vh;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    background: var(--color-bg);
    border-left: 1px solid rgba(44, 24, 16, 0.08);
    box-shadow: -8px 0 32px rgba(44, 24, 16, 0.08);
    transform: translateX(100%);
    transition: transform var(--transition);
    gap: 1.5rem;
  }

  .nav--open {
    transform: translateX(0);
  }

  .nav a {
    font-size: 1.1rem;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
