:root {
  --dark-color: #181818;
  --gray-dark: #474747;
  --gray-light: #757575;
  --primary-color: #e55473;
  --primary-gradient: linear-gradient(45deg, #E55473, #FF6B8A);
}

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

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: #333;
  width: 100%;
}

#app {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Category Selection - YENİ TASARIM */
.category-section {
  padding: 80px 0 60px 0;
  background: linear-gradient(135deg, #ffeef1 0%, #f8e7ea 50%, #f1dfe3 100%);
  position: relative;
  overflow: hidden;
}

.category-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e55473' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.6;
}

.category-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.category-title {
  text-align: center;
  margin-bottom: 50px;
}

.category-title h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #2d1b1e;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.category-title h1::after {
  content: '🌸';
  position: absolute;
  right: -60px;
  top: -10px;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

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

.category-title p {
  color: #5a4146;
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.category-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.category-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  color: #444;
  padding: 12px 20px;
  border: 2px solid rgba(229, 84, 115, 0.2);
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(229, 84, 115, 0.1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex: 0 0 auto;
}

.category-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.4s;
}

.category-btn:hover::before {
  left: 100%;
}

.category-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(229, 84, 115, 0.2);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 245, 247, 1) 100%);
}

.category-btn.active {
  background: var(--primary-gradient);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(229, 84, 115, 0.3);
}

/* Section Title */
.section-title {
  text-align: center;
  margin: 80px 0 60px 0;
  padding: 0 20px;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #272727;
  margin-bottom: 25px;
}

.section-title p {
  color: var(--gray-light);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Products Grid - KÜÇÜLTÜLMÜŞ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 120px;
  padding: 0 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.product-image {
  width: 100%;
  height: 200px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.product-info {
  padding: 15px;
  text-align: center;
  background: white;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fiyat stilleri - İNDİRİM SİSTEMİ */
.product-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 6px;
}

.original-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #999;
  text-decoration: line-through;
  text-decoration-color: #e55473;
  text-decoration-thickness: 2px;
}

.discounted-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-color);
  position: relative;
}

.discounted-price::after {
  content: '🔥';
  position: absolute;
  right: -20px;
  top: -2px;
  font-size: 0.8rem;
  animation: fire-flicker 2s infinite;
}

@keyframes fire-flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

/* Normal fiyat (indirim yoksa) */
.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-top: 6px;
}

/* Modal fiyat gösterimi */
.modal-left .product-details .product-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.modal-left .product-details .original-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #999;
  text-decoration: line-through;
  text-decoration-color: #e55473;
  text-decoration-thickness: 2px;
}

.modal-left .product-details .discounted-price {
  font-size: 2rem;
  font-weight: 800;
  color: #e55473;
}

.modal-left .product-details .discounted-price::after {
  content: '🔥';
  margin-left: 8px;
  font-size: 1.2rem;
}

/* Footer - Modern ve Sade */
.footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #333;
  margin-top: 80px;
  border-top: 3px solid var(--primary-color);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #ff6b8a 50%, var(--primary-color) 100%);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding: 60px 40px 30px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.flower-text {
  background: linear-gradient(45deg, var(--primary-color), #ff6b8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.social-btn {
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.instagram-btn {
  background: linear-gradient(45deg, #833ab4, #fd1d1d);
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(131, 58, 180, 0.3);
}

.whatsapp-btn {
  background: linear-gradient(45deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Footer /* Footer Contact - Küçültülmüş Tasarım */
.footer-contact {
  background: linear-gradient(145deg, #ffffff 0%, #fef7f8 100%);
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 
    0 0 0 1px rgba(229, 84, 115, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
}

.footer-contact::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--primary-gradient);
  border-radius: 18px;
  z-index: -1;
  opacity: 0.1;
}

.footer-contact h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-contact h3::before {
  content: '📍';
  font-size: 1rem;
}

.footer-contact h3::after {
  content: '📞';
  font-size: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: white;
  padding: 12px 14px;
  border-radius: 8px;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #444;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-info p:hover {
  border-color: rgba(229, 84, 115, 0.2);
  box-shadow: 0 4px 12px rgba(229, 84, 115, 0.08);
  transform: translateY(-2px);
}

.contact-info p:nth-child(1) {
  border-left: 3px solid #667eea;
}

.contact-info p:nth-child(2) {
  border-left: 3px solid #f093fb;
}

.contact-info p:nth-child(3) {
  border-left: 3px solid #4facfe;
}

.contact-info p:nth-child(4) {
  border-left: 3px solid #43e97b;
}

.contact-link {
  color: #444;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px dotted var(--primary-color);
}

.contact-link:hover {
  color: var(--primary-color);
  border-bottom-style: solid;
}

/* Mobil için */
@media (max-width: 768px) {
  .footer-contact {
    padding: 20px 15px;
  }
  
  .contact-info p {
    padding: 10px 12px;
    font-size: 0.75rem;
  }
  
  .footer-contact h3 {
    font-size: 1.1rem;
  }
}
.footer-bottom {
  border-top: 1px solid #e9ecef;
  padding: 25px 40px;
  text-align: center;
  background: rgba(248, 249, 250, 0.8);
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px 20px 20px;
  }
  
  .footer-title {
    font-size: 2.2rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-contact {
    order: -1;
  }
  
  .footer-bottom {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .footer-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .footer-description {
    text-align: center;
    max-width: none;
  }
  
  .social-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Yatay Modal Düzeni */
.modal-box.horizontal-layout {
  background: #fff;
  padding: 0;
  border-radius: 20px;
  max-width: 1000px;
  width: 95%;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: slideUp 0.4s ease;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

/* Sol Taraf - Ürün ve Ödeme */
.modal-left {
  flex: 1;
  padding: 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px 0 0 20px;
  overflow-y: auto;
  max-height: 90vh;
}

/* Sağ Taraf - Müşteri Bilgileri */
.modal-right {
  flex: 1;
  padding: 30px;
  background: white;
  border-radius: 0 20px 20px 0;
  overflow-y: auto;
  max-height: 90vh;
}

/* Modal Close Butonu */
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
}

.modal-close:hover {
  color: #333;
  background-color: #f1f5f9;
  transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e2e8f0;
}

.modal-header h2 {
  color: #1f2937;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

/* Ürün Showcase - Sol Taraf İçin */
.modal-left .product-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.modal-left .product-showcase .product-image {
  width: 120px;
  height: 120px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modal-left .product-showcase .product-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.modal-left .product-details {
  text-align: center;
}

.modal-left .product-details .product-name {
  color: #1f2937;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.modal-left .product-details .product-price {
  color: #e55473;
  font-size: 1.8rem;
  font-weight: 800;
}

/* Ödeme Bilgileri */
.payment-info {
  background: white;
  border: 2px solid #bbf7d0;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  text-align: left;
}

.payment-info h3 {
  color: #059669;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.bank-detail {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid #d1fae5;
  flex-wrap: wrap;
  padding-left: 0;
  margin-left: 0;
}
.bank-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.bank-detail strong {
  color: #065f46;
  font-weight: 600;
  min-width: 80px;
  flex-shrink: 0;
  margin-right: 4px;
}
.bank-detail span {
  color: #047857;
  font-weight: 500;
  flex: 1;
  word-break: break-word;
  margin-left: 0;
}


.iban-number {
  font-family: 'Courier New', monospace;
  font-weight: bold !important;
  background: #ecfdf5;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #a7f3d0;
  font-size: 0.8rem;
  word-break: break-all;
  flex: 1;
  margin-left: 8px;
}

/* Talimatlar */
.instructions {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #fbbf24;
  padding: 15px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #92400e;
  text-align: left;
}

.instructions strong {
  color: #78350f;
  display: block;
  margin-bottom: 8px;
}

/* Müşteri Formu - Sağ Taraf */
.modal-right .customer-form {
  background: transparent;
  padding: 0;
  border: none;
  margin: 0;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modal-right .customer-form h3 {
  color: #1f2937;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f1f5f9;
}

/* Form Stilleri */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e55473;
  box-shadow: 0 0 0 3px rgba(229, 84, 115, 0.1);
  transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: #9ca3af;
}

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

.form-group small {
  color: #6b7280;
  font-size: 0.8rem;
  margin-top: 6px;
  display: block;
  font-style: italic;
}

/* Placeholder için özel stil */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}

/* Required field indicator */
.form-group label[for*="customer"]::after {
  content: ' *';
  color: #ef4444;
  font-weight: bold;
}

/* Not türü için özel tasarım */
.note-type-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 2px solid #f59e0b;
}

.note-type-section label {
  color: #92400e;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

/* Custom Select Tasarımı */
.note-options {
  margin-bottom: 10px;
  position: relative;
}

.note-options select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 2px solid #f59e0b;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  color: #92400e;
  font-weight: 500;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.note-options select:focus {
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
  outline: none;
}

.note-options select:hover {
  border-color: #f59e0b;
}

/* Select option'ları için stil */
.note-options select option {
  background: white;
  color: #374151;
  padding: 10px;
  border: none;
  font-weight: 500;
}

.note-options select option:hover {
  background: #f3f4f6;
}

.note-options select option:checked {
  background: linear-gradient(45deg, #e55473, #ff6b8a);
  color: white;
}

/* Input validation states */
.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.form-group input.success,
.form-group textarea.success {
  border-color: #10b981;
  background-color: #f0fdf4;
}

/* Modal Aksiyonları */
.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 20px;
}

.contact-btn,
.purchase-complete-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 15px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.contact-btn {
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.purchase-complete-btn {
  background: linear-gradient(45deg, #e55473, #ff6b8a);
  color: white;
  box-shadow: 0 4px 15px rgba(229, 84, 115, 0.3);
}

.purchase-complete-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 84, 115, 0.4);
}

/* Başarı Modalı */
.success-modal-box {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite;
}

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

.success-modal-box h2 {
  color: #059669;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.success-modal-box p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.success-close-btn {
  background: linear-gradient(45deg, #059669, #10b981);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.success-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
  background: linear-gradient(45deg, #047857, #059669);
}

/* Sipariş Özeti */
.order-summary {
  background: #f0fdf4;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  text-align: left;
  border: 2px solid #bbf7d0;
}

.order-details p {
  margin-bottom: 8px;
  color: #065f46;
  font-size: 0.95rem;
}

.order-details strong {
  color: #047857;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 40px;
  }
  
  .footer-container {
    padding: 80px 40px 40px 40px;
    gap: 60px;
  }
  
  .category-title h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 20px;
  }
  
  .category-section {
    padding: 60px 0 50px 0;
  }
  
  .category-title h1 {
    font-size: 2.8rem;
  }
  
  .category-title h1::after {
    right: -40px;
    font-size: 1.5rem;
  }
  
  .category-buttons {
    gap: 15px;
  }
  
  .category-btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 20px 30px 20px;
  }
  
  .footer-title {
    font-size: 2.8rem;
  }
  
  .footer-bottom {
    padding: 30px 20px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  /* Modal Responsive - MOBİLDE DİKEY DÜZEN */
  .modal-box.horizontal-layout {
    flex-direction: column;
    max-width: 95%;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
  }
  
  .modal-left,
  .modal-right {
    flex: none;
    width: 100%;
    max-height: none;
    overflow-y: visible;
  }
  
  .modal-left {
    border-radius: 20px 20px 0 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  }
  
  .modal-right {
    border-radius: 0 0 20px 20px;
    padding: 20px;
    background: white;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .modal-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-btn,
  .purchase-complete-btn {
    width: 100%;
    flex: none;
    min-width: auto;
  }
  
  .modal-header h2 {
    font-size: 1.4rem;
  }
  
  .modal-right .customer-form h3 {
    font-size: 1.2rem;
  }
  
  .note-options select {
    font-size: 0.9rem;
    padding: 10px 35px 10px 12px;
    background-size: 14px;
  }
  
  .modal-left .product-showcase {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .modal-left .product-showcase .product-image {
    width: 100px;
    height: 100px;
  }
  
  .modal-left .product-showcase .product-image img {
    width: 80px;
    height: 80px;
  }
  
  .payment-info {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .bank-detail {
    font-size: 0.85rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .iban-number {
    font-size: 0.75rem;
    word-break: break-all;
  }
  
  .instructions {
    padding: 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .category-title h1 {
    font-size: 2.2rem;
  }
  
  .category-title h1::after {
    display: none;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .product-name {
    font-size: 0.9rem;
    min-height: auto;
  }
  
  .product-price {
    font-size: 1.1rem;
  }
  
  .product-image {
    height: 170px;
    padding: 12px;
  }
  
  .footer-title {
    font-size: 2.2rem;
  }
  
  .modal-box.horizontal-layout {
    max-width: 98%;
    width: 98%;
    max-height: 98vh;
    margin: 1%;
  }
  
  .modal-left,
  .modal-right {
    padding: 15px;
  }
  
  .modal-header h2 {
    font-size: 1.2rem;
  }
  
  .modal-right .customer-form h3 {
    font-size: 1.1rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .form-group label {
    font-size: 0.85rem;
  }
  
  .note-type-section {
    padding: 12px;
  }
  
  .note-options select {
    font-size: 0.85rem;
    padding: 8px 30px 8px 10px;
  }
  
  .modal-close {
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    font-size: 24px;
  }
  
  .contact-btn,
  .purchase-complete-btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .modal-left .product-showcase {
    padding: 10px;
  }
  
  .modal-left .product-showcase .product-image {
    width: 80px;
    height: 80px;
  }
  
  .modal-left .product-showcase .product-image img {
    width: 60px;
    height: 60px;
  }
  
  .modal-left .product-details .product-name {
    font-size: 1rem;
  }
  
  .modal-left .product-details .product-price {
    font-size: 1.4rem;
  }
  
  .payment-info h3 {
    font-size: 1rem;
  }
  
  .bank-detail {
    font-size: 0.8rem;
  }
  
  .iban-number {
    font-size: 0.7rem;
  }
}

@media (max-width: 360px) {
  .modal-box.horizontal-layout {
    border-radius: 15px;
  }
  
  .modal-left {
    border-radius: 15px 15px 0 0;
    padding: 12px;
  }
  
  .modal-right {
    border-radius: 0 0 15px 15px;
    padding: 12px;
  }
  
  .modal-header h2 {
    font-size: 1.1rem;
  }
  
  .modal-right .customer-form h3 {
    font-size: 1rem;
  }
}/* Admin kart stilleri */
.admin-card {
  min-height: 350px;
}

.admin-card .product-actions {
  margin-top: 15px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.admin-card .product-category {
  font-size: 0.85rem;
  color: #666;
  margin-top: 8px;
  font-style: italic;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
}

.btn-danger {
  background: linear-gradient(45deg, #dc3545, #c82333);
  color: white;
}

.btn-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* Social icon butonları - Sadece ikon */
.social-icon-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: all 0.3s ease;
}

.instagram-btn {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.instagram-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
}

.whatsapp-btn {
  background: linear-gradient(45deg, #25D366, #128C7E);
}

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

.social-icon-btn:hover svg {
  transform: scale(1.2);
}

/* Social links container düzenlemesi */
.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}
/* MOBIL RESPONSIVE - SADECE BU KODLARI EKLE */

@media (max-width: 768px) {
  /* Products Grid - İkili */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    padding: 0 15px !important;
  }
  
  /* Kategori butonları */
  .category-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
  
  .category-btn {
    width: 90% !important;
    max-width: 300px !important;
    padding: 15px 20px !important;
    font-size: 1rem !important;
  }
  
  /* Kategori başlık */
  .category-title h1 {
    font-size: 2.5rem !important;
  }
  
  .category-title h1::after {
    display: none !important;
  }
  
  /* Section padding */
  .category-section {
    padding: 50px 15px !important;
  }
  
  .section-title {
    margin: 40px 0 30px 0 !important;
    padding: 0 15px !important;
  }
  
  .section-title h2 {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  /* Kategori başlık küçük */
  .category-title h1 {
    font-size: 2rem !important;
  }
  
  .category-title p {
    font-size: 1rem !important;
  }
  
  /* Products Grid - İkili kalır */
  .products-grid {
    gap: 12px !important;
    padding: 0 10px !important;
  }
  
  .product-image {
    height: 150px !important;
  }
  
  .product-info {
    padding: 12px !important;
  }
  
  .product-name {
    font-size: 0.9rem !important;
  }
}
