/* Boff Triko - Ana Stil Dosyası */

/* Genel Sıfırlama ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --primary-color: #2c3e50;
  --primary-color-rgb: 44, 62, 80;
  --secondary-color: #e74c3c;
  --accent-color: #3498db;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --text-color: #333;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --whatsapp-color: #25D366;
  --call-color: #007bff;
  --gradient-primary: linear-gradient(135deg, #e74c3c, #c0392b);
  --gradient-dark: linear-gradient(135deg, #2c3e50, #1a1a1a);
  --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --border-radius: 5px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f9f9f9;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: var(--gradient-dark);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.ml-1 { margin-left: 0.5rem; }
.ml-2 { margin-left: 1rem; }
.ml-3 { margin-left: 1.5rem; }
.ml-4 { margin-left: 2rem; }
.ml-5 { margin-left: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

/* Header Stili */
.header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: fixed;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-notification-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  z-index: 10;
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.logo img {
  height: 100%;
  width: auto;
  max-height: 50px;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.header.scrolled .logo img {
  filter: none;
  max-height: 40px;
}

.header-right {
  display: flex;
  align-items: center;
}

.notification-icon {
  position: relative;
  cursor: pointer;
  margin-right: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

.notification-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.header.scrolled .notification-icon {
  background-color: rgba(0, 0, 0, 0.05);
}

.header.scrolled .notification-icon:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.notification-icon i {
  font-size: 18px;
  color: white;
  transition: var(--transition);
}

.header.scrolled .notification-icon i {
  color: var(--primary-color);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--secondary-color);
  color: white;
  font-size: 11px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border: 2px solid white;
}

.header.scrolled .notification-badge {
  border-color: #f8f9fa;
}

.notification-dropdown {
  position: absolute;
  top: 50px;
  right: -10px;
  background-color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  border-radius: 10px;
  width: 260px;
  padding: 12px;
  z-index: 1001;
  display: none;
  transform: translateY(-10px) scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.notification-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background-color: white;
  transform: rotate(45deg);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-left: 1px solid rgba(0,0,0,0.05);
}

.notification-dropdown.active {
  display: block;
  transform: translateY(0) scale(1);
  opacity: 1;
  animation: fadeInDropdown 0.3s ease;
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.notification-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.notification-dropdown-header h4 {
  margin: 0;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
}

.notification-dropdown-close {
  cursor: pointer;
  color: #999;
  font-size: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  background-color: #f5f5f5;
}

.notification-dropdown-close:hover {
  color: var(--primary-color);
  background-color: #eeeeee;
}

.notification-dropdown-item {
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid #f0f0f0;
  background-color: #f9f9f9;
}

.notification-dropdown-item:last-child {
  margin-bottom: 0;
}

.notification-dropdown-item:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.notification-dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.notification-dropdown-item.whatsapp-item i {
  color: #25D366;
  background-color: rgba(37, 211, 102, 0.1);
}

.notification-dropdown-item.call-item i {
  color: var(--primary-color);
  background-color: rgba(var(--primary-color-rgb), 0.1);
}

.notification-dropdown-item span {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 13px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li {
  margin: 0;
  position: relative;
}

.nav-menu li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.header.scrolled .nav-menu li:not(:last-child)::after {
  background-color: rgba(0, 0, 0, 0.1);
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  font-size: 15px;
  border-radius: 6px;
}

.nav-menu a i {
  margin-right: 8px;
  font-size: 16px;
}

.header.scrolled .nav-menu a {
  color: var(--primary-color);
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-menu a:hover::after {
  width: 70%;
  left: 15%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.header.scrolled .mobile-menu-btn {
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .nav-menu a {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .nav-menu a i {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 10px;
  }
  
  .logo {
    height: 40px;
  }
  
  .header-right {
    display: flex;
    align-items: center;
  }
  
  .notification-icon {
    margin-right: 15px;
    width: 36px;
    height: 36px;
  }
  
  .notification-icon i {
    font-size: 16px;
  }
  
  .notification-badge {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }
  
  .notification-dropdown {
    width: 280px;
    right: -70px;
  }
  
  .notification-dropdown::before {
    right: 80px;
  }
  
  .mobile-menu-btn {
    display: block;
    margin-left: 10px;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 20px 0;
    flex-direction: column;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 5px 0;
    text-align: center;
    width: 100%;
  }
  
  .nav-menu li:not(:last-child)::after {
    display: none;
  }
  
  .nav-menu a {
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    padding: 12px;
    font-size: 16px;
    border-radius: 0;
  }
  
  .nav-menu a i {
    margin-right: 10px;
  }
  
  .nav-menu a::after {
    display: none;
  }
  
  .nav-menu a:hover {
    background-color: #f5f5f5;
  }
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('https://www.bofftriko.com/wp-content/uploads/2024/10/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0 0;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center,
      rgba(231, 76, 60, 0.15) 0%,
      rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
      rgba(0, 0, 0, 0.5) 0%,
      transparent 50%,
      rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  background: linear-gradient(to right, #fff, #e74c3c, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textGradient 5s linear infinite;
}

@keyframes textGradient {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.feature-tag:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.feature-tag i {
  color: var(--secondary-color);
  margin-right: 6px;
  font-size: 0.9rem;
}

/* Ürün Slider */
.product-slider {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  padding: 20px 0 0 0;
  background: linear-gradient(135deg,
      rgba(60, 60, 60, 0.9) 0%,
      rgba(80, 80, 80, 0.85) 50%,
      rgba(60, 60, 60, 0.9) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 15px 15px 0 0;
  box-sizing: border-box;
}

.product-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.5) 0%,
      transparent 20%,
      transparent 80%,
      rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.product-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 80%,
      rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.product-slider-container {
  display: flex;
  animation: slide 15s linear infinite;
  margin: 0 -10px;
  will-change: transform;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.product-slider-container:hover {
  animation-play-state: paused;
}

.product-slide {
  min-width: 250px;
  height: 250px;
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.product-slide:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.product-slide:hover img {
  transform: scale(1.05);
}

/* Ürün Görsel Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 95%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-nav:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
}

.lightbox-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.lightbox-buttons .whatsapp-btn {
  background-color: var(--whatsapp-color);
}

.lightbox-buttons .call-btn {
  background-color: var(--call-color);
}

.lightbox-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.lightbox-buttons a i {
  margin-right: 12px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .lightbox-nav.prev {
    left: 10px;
  }
  
  .lightbox-nav.next {
    right: 10px;
  }
  
  .lightbox-buttons {
    flex-direction: column;
    width: 100%;
  }
}

/* Değer Önerileri Bölümü */
.features {
  background: linear-gradient(to top,
      rgba(245, 245, 245, 1) 0%,
      rgba(235, 235, 235, 0.95) 50%,
      rgba(225, 225, 225, 0.9) 100%);
  padding: 30px 0;
  position: relative;
  margin-top: -1px;
  z-index: 1;
  border-top: none;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features::before {
  display: none;
}

.features-container {
  display: flex;
  overflow-x: auto;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  z-index: 2;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-behavior: smooth;
  white-space: nowrap;
  padding: 10px 0;
}

.features-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.features .feature-tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.8) 0%, 
      rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50px;
  color: #333;
  font-weight: 500;
  margin: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  white-space: nowrap;
}

.features .feature-tag:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.9) 0%, 
      rgba(255, 255, 255, 0.7) 100%);
}

.features .feature-tag i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 50%;
}

/* Ürün Vitrini */
.products {
  background: linear-gradient(to bottom,
      rgba(245, 245, 245, 1) 0%,
      rgba(235, 235, 235, 0.95) 50%,
      rgba(225, 225, 225, 0.9) 100%);
  padding: 30px 0 80px;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: #333;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.products-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  opacity: 1 !important;
  visibility: visible !important;
}

.product-card {
  background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.9) 0%, 
      rgba(255, 255, 255, 0.7) 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  margin-bottom: 20px;
  display: flex !important;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  opacity: 1 !important;
  visibility: visible !important;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
  filter: brightness(1);
}

.product-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Kare görünüm için 1:1 oranı */
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}

.product-info {
  padding: 15px;
  color: #333;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.8em;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 25px;
  font-weight: 500;
  margin-top: auto;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  width: 100%;
}

.product-btn i {
  margin-right: 12px;
}

.product-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Fiyat Bilgisi Bölümü */
.price-info {
  background: #f8f9fa;
  padding: 20px;
  margin: 30px auto;
  max-width: 800px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-info::before {
  content: '\f05a';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.price-info h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.price-info p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* İletişim Formu */
.contact {
  background: linear-gradient(to top,
      rgba(245, 245, 245, 1) 0%,
      rgba(235, 235, 235, 0.95) 50%,
      rgba(225, 225, 225, 0.9) 100%);
  padding: 80px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  color: #333;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.contact-info p {
  margin-bottom: 30px;
  line-height: 1.7;
  color: #666;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.1) 0%, 
      rgba(255, 255, 255, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.contact-form {
  background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.9) 0%, 
      rgba(255, 255, 255, 0.7) 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.contact-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: 8px;
  color: #333;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background: linear-gradient(to bottom,
      rgba(50, 50, 50, 0.95) 0%,
      rgba(40, 40, 40, 1) 100%);
  padding: 20px 0;
  color: white;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* Kayan butonlar için düzenleme */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 999;
  padding: 0 15px;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 12px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  width: 50%;
  margin: 0 5px;
  font-size: 14px;
}

.floating-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.call-btn {
  background-color: var(--primary-color);
}

.whatsapp-btn {
  background-color: #25D366;
}

.floating-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@media (max-width: 576px) {
  .floating-btn {
    padding: 10px;
    font-size: 13px;
  }
  
  .floating-btn i {
    font-size: 16px;
    margin-right: 6px;
  }
}

/* Mobil Uyumluluk */
@media (max-width: 1200px) {
  .products-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .product-title {
    font-size: 0.9rem;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  
  .product-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

/* İletişim Butonları Bölümü */
.contact-buttons {
  background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.9) 0%, 
      rgba(255, 255, 255, 0.7) 100%);
  padding: 40px 0;
  text-align: center;
  border-radius: 15px;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.contact-buttons h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

.contact-buttons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn i {
  margin-right: 12px;
  font-size: 1.2rem;
}

.contact-btn.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-btn.call-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .contact-buttons {
    padding: 30px 15px;
    margin: 20px auto;
  }
  
  .contact-buttons h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .contact-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .contact-btn i {
    margin-right: 12px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .contact-buttons {
    padding: 25px 10px;
    margin: 15px auto;
  }
  
  .contact-buttons h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .contact-buttons-container {
    gap: 15px;
  }
  
  .contact-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 25px;
  }
  
  .contact-btn i {
    margin-right: 12px;
    font-size: 1rem;
  }
}

/* Yazlık Ürünler Bölümü */
.summer-collection {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f9f9f9, #ffffff);
  position: relative;
  overflow: hidden;
}

.summer-collection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e74c3c' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.summer-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.summer-subtitle {
  font-size: 18px;
  color: #777;
  max-width: 700px;
  margin: 15px auto 0;
}

.summer-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
}

.summer-product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}

.summer-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.summer-product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.summer-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.summer-product-card:hover .summer-product-image img {
  transform: scale(1.05);
}

.summer-product-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.summer-tag {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.summer-product-info {
  padding: 20px;
  text-align: center;
}

.summer-product-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.summer-product-btn {
  display: inline-block;
  background: var(--whatsapp-color);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.summer-product-btn:hover {
  background: #1da856;
  transform: translateY(-2px);
}

.summer-product-btn i {
  margin-right: 5px;
}

.view-all-btn {
  position: relative;
  z-index: 1;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

/* Responsive Styles for Summer Collection */
@media (max-width: 992px) {
  .summer-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .summer-collection {
    padding: 60px 0;
  }
  
  .summer-subtitle {
    font-size: 16px;
    padding: 0 15px;
  }
  
  .summer-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .summer-product-image {
    height: 180px;
  }
  
  .summer-product-info {
    padding: 15px 10px;
  }
  
  .summer-product-info h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .summer-product-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.summer-products-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  margin: 20px auto;
  max-width: 1200px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.summer-preview {
  text-align: center;
  padding: 0 15px 30px;
}

.summer-preview h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.summer-preview h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.summer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.summer-grid-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}

.summer-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.summer-grid-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.summer-grid-item:hover img {
  transform: scale(1.05);
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.new-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--secondary-color), #c0392b);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .summer-preview h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .summer-products-section {
    padding: 30px 0;
    margin: 15px;
    border-radius: 15px;
  }

  .summer-preview h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .summer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 0 10px;
  }

  .summer-grid-item {
    border-radius: 10px;
  }

  .new-tag {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .summer-products-section {
    padding: 20px 0;
    margin: 10px;
  }

  .summer-preview h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .summer-grid {
    gap: 6px;
    padding: 0 8px;
  }

  .new-tag {
    padding: 3px 8px;
    font-size: 0.65rem;
    top: 5px;
    left: 5px;
  }
} 