/* ========================================
   VARIABLES
   ======================================== */
:root {
  --color-bg: #fdf2f0;
  --color-bg-alt: #faf5f3;
  --color-card: #ffffff;
  --color-foreground: #3d2b2b;
  --color-muted: #8a7070;
  --color-primary: #d4806e;
  --color-primary-hover: #c46d5b;
  --color-primary-light: rgba(212, 128, 110, 0.1);
  --color-primary-shadow: rgba(212, 128, 110, 0.2);
  --color-accent: #f5e6c8;
  --color-border: #f0e0dc;
  --color-input-bg: #fdf8f7;
  --color-white: #ffffff;
  --color-whatsapp: #25D366;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--color-foreground);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 242, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px; /* İhtiyacına göre boyutu değiştirebilirsin */
  height: 45px;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: auto;
  object-fit: contain; /* Logonun bozulmadan kutuya sığmasını sağlar */
}
.logo {
  margin-left: 50px; /* Bu değeri artırarak logoyu daha da sağa itebilirsin */
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted);
  border-radius: var(--radius);
  transition: color 0.2s, background-color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-foreground);
  background-color: var(--color-primary-light);
}

.header-right {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  color: var(--color-muted);
  transition: color 0.2s, background-color 0.2s;
}

.social-icon-link:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
}

.header-divider {
  width: 1px;
  height: 24px;
  background: var(--color-border);
}

.header-marketplaces {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.marketplace-link {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  border-radius: var(--radius);
  transition: color 0.2s, background-color 0.2s;
}

.marketplace-link:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-foreground);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--color-border);
  background: rgba(253, 242, 240, 0.98);
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-muted);
  border-radius: var(--radius);
  transition: color 0.2s, background-color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--color-foreground);
  background-color: var(--color-primary-light);
}

.mobile-socials {
  display: flex;
  gap: 0.5rem;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}

.mobile-marketplaces {
  display: flex;
  gap: 0.25rem;
  padding-top: 0.75rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--color-bg-alt);
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-blob-1 {
  top: 5rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: var(--color-primary-light);
}

.hero-blob-2 {
  bottom: 5rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  background: var(--color-accent);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero-subtitle {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-foreground);
}

.hero-description {
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 2rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, background-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 16px var(--color-primary-shadow);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
}

.btn-outline {
  background: transparent;
  color: var(--color-foreground);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  background: var(--color-card);
}

.btn-submit {
  width: 100%;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-subtitle {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--color-foreground);
}

.section-description {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

/* ========================================
   CARDS (Kurumsal)
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.card {
  padding: 2rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px var(--color-primary-shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-muted);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

/* ========================================
   PRODUCTS
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px var(--color-primary-shadow);
  transform: translateY(-2px);
}

.product-image {
  position: relative;
  aspect-ratio: 5/5;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 0.75rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
}

.product-info {
  padding: 1.25rem;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.product-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-muted);
}

/* Marketplace CTA */
.marketplace-cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.marketplace-cta-text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}



/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-form-wrapper {
  padding: 2rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-foreground);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font);
  color: var(--color-foreground);
  background: var(--color-input-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px var(--color-primary-shadow);
}

.info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.info-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.info-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-bg-alt);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.25rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-text {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  background: var(--color-primary-light);
  transition: color 0.2s, background-color 0.2s;
}

.footer-social-icon:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link {
  font-size: 0.75rem;
  color: var(--color-muted);
  transition: color 0.2s;
}

.footer-bottom-link:hover {
  color: var(--color-primary);
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: whatsapp-appear 0.5s ease-out;
}

@keyframes whatsapp-appear {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem 1rem;
  background: var(--color-foreground);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (min-width: 640px) {
  .hero-title {
    font-size: 3.25rem;
  }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-submit {
    width: auto;
    align-self: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .navbar {
    display: flex;
  }

  .header-right {
    display: flex;
  }

  .hero-title {
    font-size: 4rem;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  /* ========================================
   PAZARYERİ BUTONLARI (ÖZEL DÜZENLEME)
   ======================================== */
.marketplace-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-marketplace {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    height: 48px; /* btn-submit ile aynı yükseklik */
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-xl); /* btn-submit ile aynı oval yapı */
    text-decoration: none;
    transition: all 0.2s ease;
    
    /* btn-submit (Primary) Renkleri */
    background: var(--color-primary);
    color: var(--color-white) !important;
    box-shadow: 0 4px 16px var(--color-primary-shadow);
    border: none;
    min-width: 160px;
    cursor: pointer;
}

.btn-marketplace:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-primary-shadow);
}

/* Header içindeki küçük linklerin stilini bozmamak için */
.header-marketplaces .marketplace-link {
    background: transparent;
    color: var(--color-muted);
    box-shadow: none;
    padding: 0.375rem 0.75rem;
    min-width: auto;
    height: auto;
}
/* Çalışma Saatleri Hizalama Bloğu */
.working-hours {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hours-row {
  display: flex;
  font-size: 0.875rem;
  line-height: 1.6;
}

.hours-row .day {
  /* Buradaki 130px değerini gün yazısının uzunluğuna göre artırıp azaltabilirsin */
  min-width: 130px; 
  color: var(--color-muted);
  display: inline-block;
}

.hours-row .time {
  color: var(--color-foreground);
  font-weight: 500;
  /* İki noktanın hizada durmasını sağlayan ana yer burasıdır */
}
}



