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

:root {
  --primary-color: #e91e63;
  --secondary-color: #ff4081;
  --dark-color: #1a1a1a;
  --light-color: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --whatsapp: #25D366;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background: var(--light-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(233, 30, 99, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(233, 30, 99, 0.1);
}

.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 20px;
  animation: fadeInDown 0.8s ease-out;
}

.logo {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.3));
}

.hero {
  background: linear-gradient(135deg, #ff0080 0%, #ff8c00 50%, #40e0d0 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  color: var(--white);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 192, 203, 0.2) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,64 C320,96 480,32 720,64 C960,96 1120,32 1200,64 L1200,120 L0,120 Z' fill='%23f5f5f5'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeInDown 1s ease-out;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
  animation: fadeInUp 1s ease-out 0.2s backwards;
  font-weight: 300;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.feature {
  background: rgba(255,255,255,0.25);
  padding: 1.2rem 2rem;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  animation: floatFeature 3s ease-in-out infinite;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.35);
}

.feature:nth-child(1) {
  animation-delay: 0s;
}

.feature:nth-child(2) {
  animation-delay: 1s;
}

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

.feature-icon {
  font-size: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: #ff0080;
  padding: 1.3rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.6s backwards;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,0,128,0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,0,128,0.4);
  color: #cc0066;
}

.filter-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff5f8 100%);
  position: relative;
  overflow: hidden;
}

.filter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 107, 157, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.filter-container {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.search-box {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #e91e63;
  font-size: 1.2rem;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

.search-input {
  width: 100%;
  padding: 1.3rem 1.5rem 1.3rem 3.5rem;
  border: 3px solid transparent;
  border-radius: 60px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
  box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
  transition: all 0.3s ease;
  font-weight: 500;
}

.search-input:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 10px 40px rgba(233, 30, 99, 0.25);
  transform: translateY(-2px);
  background: #ffffff;
}

.search-input::placeholder {
  color: #999;
  font-style: italic;
}

.sort-box {
  position: relative;
  min-width: 250px;
}

.sort-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #e91e63;
  font-size: 1.1rem;
  z-index: 2;
}

.sort-select {
  width: 100%;
  padding: 1.3rem 1.5rem 1.3rem 3.5rem;
  border: 3px solid transparent;
  border-radius: 60px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
  box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
  transition: all 0.3s ease;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e91e63' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
}

.sort-select:hover {
  border-color: #e91e63;
  box-shadow: 0 10px 40px rgba(233, 30, 99, 0.25);
  transform: translateY(-2px);
}

.sort-select:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 10px 40px rgba(233, 30, 99, 0.3);
  background: #ffffff;
}

.clear-btn {
  padding: 1.3rem 2.5rem;
  border: none;
  border-radius: 60px;
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 30px rgba(233, 30, 99, 0.3);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
}

.clear-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.clear-btn:hover::before {
  width: 300px;
  height: 300px;
}

.clear-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(233, 30, 99, 0.5);
}

.clear-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.clear-btn:hover i {
  transform: rotate(90deg);
}

.products {
  padding: 60px 20px;
}

.products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.loading {
  text-align: center;
  padding: 2rem;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(233, 30, 99, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #e91e63, #ff6b9d, #ffc0cb);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(233, 30, 99, 0.25);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #f9f9f9 0%, #fff5f8 100%);
  transition: all 0.4s ease;
  position: relative;
}

.card:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.card-content {
  padding: 1.5rem;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.9));
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  transition: all 0.3s ease;
}

.card:hover h3 {
  transform: translateX(5px);
}

.teslimat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { 
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  }
  50% { 
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.6);
  }
}

.teslimat-badge i {
  font-size: 1rem;
  animation: truck 1.5s ease-in-out infinite;
}

@keyframes truck {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(3px); }
}

.card p {
  color: #555;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  line-height: 1.6;
  font-style: italic;
  box-shadow: 0 2px 10px rgba(233, 30, 99, 0.08);
  transition: all 0.3s ease;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.card:hover p {
  background: linear-gradient(135deg, #ffe8f0 0%, #ffd6e0 100%);
  transform: translateX(3px);
}

.card-price {
  font-size: 2rem;
  background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(233, 30, 99, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

.card:hover .card-price {
  transform: scale(1.1);
}

.card-buttons {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.btn-detay {
  flex: 1;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-detay::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.btn-detay:hover::before {
  width: 300px;
  height: 300px;
}

.btn-detay:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

.btn-detay svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-detay:hover svg {
  transform: scale(1.2) rotate(5deg);
}

.btn-whatsapp-quick {
  flex: 1;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-quick::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.btn-whatsapp-quick:hover::before {
  width: 300px;
  height: 300px;
}

.btn-whatsapp-quick:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-quick svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-whatsapp-quick:hover svg {
  transform: scale(1.2) rotate(-5deg);
}

.contact {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff5f8 50%, #f8f9fa 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.contact-text {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #555;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  font-weight: 500;
}

.contact-subtext {
  font-size: 1.05rem;
  margin-top: 2rem;
  color: #777;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(233, 30, 99, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(233, 30, 99, 0.25);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 700;
}

.contact-info-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.phone-link {
  color: #e91e63;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.3s;
}

.phone-link:hover {
  color: #c2185b;
  text-decoration: underline;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.working-hours {
  text-align: left;
  margin-top: 1rem;
}

.working-hours p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.working-hours strong {
  color: #e91e63;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  padding: 1.5rem 3rem;
  border-radius: 60px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  overflow: hidden;
}

.btn-whatsapp-large::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-whatsapp-large:hover::before {
  width: 400px;
  height: 400px;
}

.btn-whatsapp-large:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-large svg {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

footer {
  background: linear-gradient(135deg, #2d1b69 0%, #8b2c8b 50%, #c71f6a 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,64 C320,32 480,96 720,64 C960,32 1120,96 1200,64 L1200,0 L0,0 Z' fill='%23f5f5f5'/%3E%3C/svg%3E") no-repeat top;
  background-size: cover;
}

footer::after {
  content: '🌸';
  position: absolute;
  font-size: 8rem;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

footer p {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
}

#footer-logo {
  font-weight: 800;
  color: #fff;
  font-size: 1.3rem;
  text-shadow: 0 0 20px rgba(255,182,193,0.8);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 20px rgba(255,182,193,0.8); }
  to { text-shadow: 0 0 30px rgba(255,182,193,1), 0 0 40px rgba(255,105,180,0.6); }
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  overflow: auto;
}

.modal-content {
  background: var(--white);
  margin: 5% auto;
  padding: 2rem;
  border-radius: 15px;
  max-width: 500px;
  position: relative;
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: #666;
}

.close:hover {
  color: var(--dark-color);
}

.modal h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

#modal-cicek-info {
  background: var(--light-color);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

#modal-cicek-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

form label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  color: var(--dark-color);
}

form input,
form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.toplam-fiyat {
  background: var(--light-color);
  padding: 1rem;
  border-radius: 5px;
  margin: 1.5rem 0;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}

.btn-whatsapp {
  width: 100%;
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: #128C7E;
}

.banner-popup {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}

.banner-popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}

.banner-popup-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.banner-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
  font-weight: bold;
  z-index: 3001;
}

.banner-close:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-features {
    gap: 1rem;
  }
  
  .feature {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .card img {
    height: 150px;
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .teslimat-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    margin-bottom: 0.5rem;
  }
  
  .teslimat-badge i {
    font-size: 0.8rem;
  }
  
  .card p {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .card-price {
    font-size: 1.3rem;
  }
  
  .card-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .btn-detay,
  .btn-whatsapp-quick {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.7rem;
  }
  
  .modal-content {
    margin: 10% 10px;
    padding: 1.5rem;
  }
  
  .btn-whatsapp-large {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }
  
  .banner-popup-content img {
    max-width: 95%;
  }
  
  .banner-close {
    top: -35px;
    font-size: 2.5rem;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-info-card {
    padding: 1.5rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

