/* ===========================================================
   GENEL AYARLAR
   =========================================================== */
html, body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  padding: 5rem 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #1f2937;
}

/* ===========================================================
   NAVBAR
   =========================================================== */
.navbar {
  background-color: #d18292;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.navbar-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.navbar .logo {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0;
}

.navbar .logo img {
  height: 60px;
}

.navbar .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.navbar .nav-links a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.navbar .nav-links a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.navbar .search-box {
  background: #e8a2b2;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  flex: 1 1 300px;
  max-width: 400px;
}

.navbar .search-box input {
  border: none;
  background: transparent;
  flex: 1;
  outline: none;
  color: #333;
}

.navbar .search-box i {
  color: #333;
}

/* ===========================================================
   TICKER BAR
   =========================================================== */
.ticker-bar {
  width: 100%;
  background: #111;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-wrapper {
  display: flex;
  width: max-content;
  animation: ticker 20s linear infinite;
}

.ticker-text {
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===========================================================
   KATEGORİLER
   =========================================================== */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding: 0;
}

.category-card {
  width: 100%;
  max-width: 100%;
  flex: 1 1 24%;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.category-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================================================
   SLIDER
   =========================================================== */
.slider-container {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* ===========================================================
   CTA #1 - ARASI AKSİYON
   =========================================================== */
.cta-action {
  background-color: #fff0f5;
  color: #d81b60;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-action i {
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 1rem;
  display: inline-block;
}

.cta-action h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-action p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-action a {
  background-color: #d81b60;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
}

/* ===========================================================
   AVANTAJ KART YAPISI (Yeni)
   =========================================================== */
.advantage-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #ffe4e9;
  padding: 2rem 1rem;
  gap: 1rem;
}

.advantage-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  flex: 1 1 140px;
  max-width: 160px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.advantage-card:hover {
  transform: translateY(-4px);
}

.advantage-card i {
  font-size: 1.75rem;
  color: #e91e63;
  margin-bottom: 0.5rem;
  display: block;
}

.advantage-card span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4b1e2f;
}

/* ===========================================================
   CTA #2 - KOLEKSİYON
   =========================================================== */
.cta-collection {
  background: linear-gradient(to right, #ffdce5, #fff0f5);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-collection i {
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 1rem;
  display: inline-block;
}

.cta-collection h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #d81b60;
}

.cta-collection p {
  color: #6b183f;
  max-width: 640px;
  margin: 1rem auto;
}

.cta-collection a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: #d81b60;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

/* ===========================================================
   INSTAGRAM BÖLÜMÜ
   =========================================================== */
.instagram-section {
  background: #ffe4e9;
  padding: 4rem 1.5rem;
  text-align: center;
}

.instagram-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #d81b60;
}

.instagram-section a {
  display: inline-block;
  background: #d81b60;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background-color: #f3f3f3;
  padding: 4rem 2rem 2rem;
  font-size: 0.9rem;
  color: #333;
}

.footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer .footer-col ul {
  list-style: none;
  padding: 0;
}

.footer .footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer .footer-col ul li a {
  color: #333;
  text-decoration: none;
}

.footer .footer-col ul li a:hover {
  text-decoration: underline;
}

.footer .footer-subscribe input[type="email"] {
  padding: 0.5rem;
  border: 1px solid #999;
  border-radius: 0;
  width: 100%;
  max-width: 200px;
}

.footer .footer-subscribe button {
  padding: 0.5rem 1rem;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
}

.footer .social-icons {
  margin-top: 1rem;
}

.footer .social-icons i {
  font-size: 1.5rem;
  color: #d81b60;
}

.footer .footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}
/* ===========================================================
   ÜRÜN SLIDER BÖLÜMÜ
   =========================================================== */
.product-slider-section-unique {
  width: 100%;
  max-width: 100%;
  padding: 1rem 0;
  background: #fff;
  overflow: hidden;
}

.swiper-product-unique {
  max-width: 1440px;
  margin: 0 auto;
}

.swiper-wrapper {
  display: flex;
  box-sizing: border-box;
}

.swiper-slide {
  box-sizing: border-box;
}

.product-card-unique {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-unique:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.product-image-unique {
  width: 100%;
  aspect-ratio: 2 / 3; /* önce 3/4’tü → daha zarif görünüm */
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
}

.product-image-unique img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

.product-card-unique:hover img {
  scale: 1.05;
}

.product-card-unique h3 {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: #111;
}

.product-card-unique .price {
  font-weight: bold;
  color: #d81b60;
}

.favorite-btn-unique,
.add-to-cart-unique {
  position: absolute;
  top: 0.75rem;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: #d81b60;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: background 0.3s ease;
}

.favorite-btn-unique:hover,
.add-to-cart-unique:hover {
  background: #fce4ec;
}

.favorite-btn-unique {
  right: 0.75rem;
}

.add-to-cart-unique {
  left: 0.75rem;
}

.product-content-unique {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-info-unique {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.product-meta-row-unique {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}

.product-title-unique {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  margin: 0;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price {
  font-size: 0.95rem;
  font-weight: bold;
  color: #d81b60;
  margin: 0;
  white-space: nowrap;
}


.swiper-button-prev-unique,
.swiper-button-next-unique {
  color: #d81b60;
}

.product-slider-header-unique {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.product-slider-header-unique h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.product-slider-header-unique hr {
  width: 80px;
  height: 3px;
  background-color: #d81b60;
  border: none;
  margin: 0 auto;
  border-radius: 999px;
}