/* ==========================================================================
   Aday Dayanıklı Tüketim Malları - 1-to-1 Wix Reference Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --bg-main: #f0f0f0;
  --bg-white: #ffffff;
  --bg-dark: #111111;
  --text-dark: #111111;
  --text-muted: #555555;
  --text-red: #d90429;
  --text-blue: #005691;
  --border-dark: #111111;
  --border-light: #e0e0e0;
  --font-heading: 'Outfit', 'Open Sans', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  background: #fff;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.35rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem;
  outline: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--text-red);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  background: var(--text-red);
}

.search-box-wix {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-dark);
  background: var(--bg-white);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
}

.search-box-wix input {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.9rem;
  width: 140px;
}

.search-box-wix i {
  color: #666;
  font-size: 0.9rem;
}

/* Pages Display Controller */
.page-view {
  display: none;
}

.page-view.active {
  display: block;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #222;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
}

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

.hero-overlay-card {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  padding: 2.5rem;
  max-width: 520px;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 10;
}

.hero-overlay-card h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-overlay-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.wix-btn {
  display: inline-block;
  padding: 0.65rem 2rem;
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.wix-btn:hover {
  background: var(--text-dark);
  color: var(--bg-white);
}

.wix-watermark-logo {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 1rem;
  pointer-events: none;
}

.wix-watermark-logo img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.wix-watermark-logo span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Store Front Banner */
.store-banner {
  margin: 3rem 0;
  text-align: center;
}

.store-banner-img-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.store-banner-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.store-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-banner-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.section-headline {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 3rem 0 2rem 0;
  color: var(--text-dark);
}

/* En Çok Satılanlar Grid */
.best-sellers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.best-seller-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  display: flex;
  min-height: 380px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.best-seller-img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.best-seller-content {
  width: 50%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.best-seller-tag {
  color: var(--text-red);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.best-seller-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.best-seller-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* Contact Section */
.contact-section-wix {
  background: #e9e9e9;
  padding: 4rem 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.contact-logo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.contact-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.contact-address {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.contact-phones-list {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-phones-list span {
  color: var(--text-muted);
}

.contact-social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* Markalar Hero & Filter Bar */
.brands-hero {
  background: linear-gradient(135deg, #111111 0%, #222222 100%);
  color: #ffffff;
  padding: 3.5rem 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  border-bottom: 4px solid var(--text-red);
}

.brands-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.brands-hero p {
  font-size: 1.05rem;
  color: #dddddd;
  max-width: 720px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.brand-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.filter-btn {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.55rem 1.35rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--text-red);
  color: #ffffff;
  border-color: var(--text-red);
}

/* Enhanced Wix Brand Card with Image */
.brands-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0 5rem 0;
}

.wix-brand-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.wix-brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.wix-brand-img-box {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}

.wix-brand-img-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.wix-brand-card:hover .wix-brand-img-box img {
  transform: scale(1.08);
}

.wix-brand-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg-dark);
  color: var(--bg-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.wix-brand-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  text-align: center;
}

.wix-brand-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.wix-brand-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.wix-brand-card-content .wix-btn {
  width: 100%;
}

/* Kampanyalar Page Cards */
.campaigns-page-container {
  padding: 3rem 0 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.wix-campaign-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.wix-campaign-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.wix-campaign-body h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-red);
  margin-bottom: 1rem;
}

.wix-campaign-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Footer */
footer {
  background: #e0e0e0;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

footer p {
  margin-bottom: 0.35rem;
}

/* Responsive Mobile Design */
@media (max-width: 868px) {
  .navbar {
    height: 70px;
    position: relative;
  }

  .logo-circle {
    width: 46px;
    height: 46px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: #f4f4f4;
    border: 1px solid #ddd;
  }

  .nav-menu-wrapper {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--text-red);
    display: none;
    z-index: 1000;
  }

  .nav-menu-wrapper.active {
    display: flex;
    animation: fadeInDown 0.25s ease-out;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    border: 1px solid #eee;
  }

  .nav-menu li a.active {
    background: var(--text-red);
    color: #fff;
    border-color: var(--text-red);
  }

  .nav-right {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }

  .social-icons {
    justify-content: center;
  }

  .search-box-wix {
    width: 100%;
  }

  .search-box-wix input {
    width: 100%;
  }

  /* Hero Carousel Mobile */
  .hero-carousel {
    height: auto;
    min-height: 440px;
  }

  .hero-overlay-card {
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 1.5rem;
    top: auto;
    transform: none;
    max-width: none;
    width: 90%;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }

  .hero-overlay-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }

  .hero-overlay-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .wix-btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .wix-watermark-logo {
    top: 1rem;
    right: 1rem;
    transform: none;
    width: 75px;
    height: 75px;
    padding: 0.4rem;
    background: rgba(0,0,0,0.45);
    border-color: rgba(255,255,255,0.4);
  }

  .wix-watermark-logo img {
    width: 32px;
    height: 32px;
  }

  .wix-watermark-logo span {
    display: none;
  }

  /* Store Front Banner Mobile */
  .store-banner {
    margin: 1.5rem 0;
  }

  .store-banner-img-wrapper img {
    height: 220px;
  }

  .store-banner-title {
    font-size: 1.75rem;
    letter-spacing: 0.04em;
  }

  .section-headline {
    font-size: 1.4rem;
    margin: 2rem 0 1.25rem 0;
  }

  /* Best Sellers Grid & Cards Mobile */
  .best-sellers-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .best-seller-card {
    flex-direction: column;
    min-height: auto;
    border-radius: 8px;
    overflow: hidden;
  }

  .best-seller-img {
    width: 100%;
    height: 220px;
  }

  .best-seller-content {
    width: 100%;
    padding: 1.25rem 1rem;
  }

  .best-seller-tag {
    font-size: 1.2rem;
  }

  .best-seller-title {
    font-size: 1.05rem;
  }

  .best-seller-desc {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
  }

  /* Contact Section Mobile */
  .contact-section-wix {
    padding: 2.5rem 1rem;
    margin-bottom: 2rem;
  }

  .contact-logo-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .contact-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .contact-phones-list {
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .contact-phones-list div {
    background: #fff;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Brands Grid Mobile */
  .brands-hero {
    padding: 2.5rem 1rem 2rem 1rem;
  }

  .brands-hero h1 {
    font-size: 1.65rem;
  }

  .brands-hero p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .brand-filter-bar {
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .filter-btn {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }

  .brands-page-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    padding: 1.5rem 0 3rem 0;
  }

  .wix-brand-img-box {
    height: 160px;
    padding: 1rem;
  }

  .wix-brand-card-title {
    font-size: 1.2rem;
  }

  .wix-brand-card-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  /* Campaigns Page Mobile */
  .campaigns-page-container {
    padding: 1.5rem 0 3rem 0;
    gap: 1.5rem;
  }

  .wix-campaign-card {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1.25rem;
    border-radius: 8px;
  }

  .wix-campaign-img {
    height: 180px;
    border-radius: 4px;
  }

  .wix-campaign-body h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .brands-page-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
