/* ===== MODERN 3D PRINTING DESIGN - CLEAN & PROFESSIONAL ===== */

/* CSS Variables - Modern Color Palette */
:root {
  --primary-color: #333;
  --secondary-color: #555;
  --accent-color: #007bff;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --text-dark: #333;
  --text-light: #666;
  --text-muted: #999;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #333;
  --border-light: #e9ecef;
  --border-dark: #333;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 140px; /* Header yüksekliği için */
}

/* Mobile body padding adjustment */
@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 70px;
  }
}

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

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-light);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-muted);
}

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-top {
  background: #fafafa;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.contact-info span {
  margin-right: 20px;
  color: #666;
}

.contact-info i {
  margin-right: 5px;
  color: #333;
}

/* User Authentication Styles */
.user-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.user-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
  background: #f8f9fa;
}

.user-link:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  text-decoration: none;
  color: #333;
}

.user-link.active {
  background: #333;
  color: white;
}

.user-link.active:hover {
  background: #5a6fd8;
  color: white;
}

.auth-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.login-btn {
  background: #333;
  color: white;
}

.login-btn:hover {
  background: #555;
  transform: translateY(-2px);
}

.register-btn {
  background: #007bff;
  color: white;
}

.register-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* User Profile */
.user-profile {
  position: relative;
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 5px;
}

.user-profile:hover .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s;
}

.profile-dropdown a:hover {
  background: #f8f9fa;
}

.profile-dropdown hr {
  margin: 8px 0;
  border: none;
  border-top: 1px solid #e9ecef;
}

.logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  transition: background-color 0.3s;
}

.logout-btn:hover {
  background: #f8f9fa;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #e9ecef;
}

.modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s;
}

.close-btn:hover {
  background: #f8f9fa;
  color: #333;
}

/* Auth Form Styles */
.auth-form {
  padding: 25px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-help {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  font-style: italic;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.forgot-link {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
}

.forgot-link:hover {
  text-decoration: underline;
}

.modal-footer {
  padding: 20px 25px;
  border-top: 1px solid #e9ecef;
  text-align: center;
  color: #666;
}

.modal-footer a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.modal-footer a:hover {
  text-decoration: underline;
}

/* Profile Avatar */
.profile-avatar {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.profile-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e9ecef;
}

.change-avatar-btn {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  background: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: all 0.3s;
}

.change-avatar-btn:hover {
  background: #0056b3;
  transform: translateX(50%) scale(1.1);
}

/* Navigation */
.main-nav {
  background: var(--bg-dark);
  padding: 0;
  position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 15px;
  transition: var(--transition);
  position: relative;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .main-nav ul.active {
    display: flex;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    margin-left: 20px;
  }

  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-bottom: none;
  }

  .header-main {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px 0;
  }

  .search-bar {
    order: 2;
  }

  .header-actions {
    order: 3;
    justify-content: center;
  }
}

/* Header Actions */
.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.whatsapp-btn,
.instagram-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.instagram-btn {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
}

.instagram-btn:hover {
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--bg-white);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(0) rotate(0deg);
}

.mobile-menu-toggle span:nth-child(2) {
  transform: translateY(0) scaleX(1);
  opacity: 1;
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(0) rotate(0deg);
}

/* Active state animations */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  transform: translateY(0) scaleX(0);
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Hover effects */
.mobile-menu-toggle:hover span {
  background: var(--accent-color);
}

.mobile-menu-toggle:hover span:nth-child(1) {
  transform: translateY(-2px);
}

.mobile-menu-toggle:hover span:nth-child(3) {
  transform: translateY(2px);
}

.mobile-menu-toggle.active:hover span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active:hover span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.main-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  font-weight: 500;
  transition: background-color 0.3s;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  color: #333;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #333;
  padding: 80px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--bg-white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--primary-color)
  );
  transition: var(--transition);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-dark);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: var(--transition);
  z-index: -1;
}

.btn-secondary:hover {
  color: var(--bg-white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-outline {
  background: transparent;
  color: #333;
  border: 2px solid #333;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: #333;
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #128c7e;
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-shopier {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(51, 51, 51, 0.3);
}

.btn-shopier:hover {
  background: linear-gradient(135deg, #222 0%, #444 100%);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Categories Section */
.categories {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  transform: scaleX(0);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #333, #555);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.category-icon i {
  font-size: 32px;
  color: white;
}

.category-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.category-card p {
  color: #666;
  margin-bottom: 20px;
}

.category-link {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.category-link:hover {
  color: #555;
}

/* Featured Products */
.featured-products {
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 250px;
  overflow: hidden;
}

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

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

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.btn-small {
  padding: 8px 15px;
  font-size: 14px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
}

.contact-card:nth-child(1) .contact-icon {
  background: #25d366;
}

.contact-card:nth-child(2) .contact-icon {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.contact-card:nth-child(3) .contact-icon {
  background: #333;
}

.contact-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.contact-card p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Special Offers */
.special-offers {
  padding: 80px 0;
  background: #fff;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.offer-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  position: relative;
}

.offer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #dc3545;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.offer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.offer-content {
  padding: 20px;
}

.offer-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.price {
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.new-price {
  font-size: 20px;
  font-weight: 700;
  color: #dc3545;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: #ecf0f1;
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #3498db;
}

.footer-section ul li i {
  margin-right: 10px;
  color: #3498db;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 32px;
  height: 32px;
  background: #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background: #777;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
  color: #ccc;
}

/* Modal Styles kaldırıldı */

.cart-items {
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item-price {
  color: #333;
  font-weight: 600;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
}

.quantity-btn {
  background: #e9ecef;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-total {
  font-size: 18px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-main {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .logo-container {
    justify-content: center;
    margin-bottom: 10px;
  }

  .logo-image {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 24px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 36px;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.1);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

  .hero {
    padding: 60px 0;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .logo-container {
    gap: 8px;
  }

  .logo-image {
    width: 35px;
    height: 35px;
  }

  .logo-text {
    font-size: 20px;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

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

.slide-in {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Products Page Styles */
.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.page-header p {
  font-size: 20px;
  color: #666;
}

.category-filters {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid #f0f0f0;
}

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

.filter-btn {
  padding: 12px 24px;
  border: 2px solid #e9ecef;
  background: white;
  color: #333;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover {
  border-color: #333;
  background: #f8f9fa;
}

.filter-btn.active {
  background: #333;
  color: white;
  border-color: #333;
}

.filter-btn i {
  font-size: 16px;
}

.products-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.no-products {
  text-align: center;
  padding: 80px 20px;
  color: #666;
}

.no-products i {
  font-size: 64px;
  margin-bottom: 20px;
  color: #ccc;
}

.no-products h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.no-products p {
  font-size: 16px;
  color: #666;
}

/* About Page Styles */
.about-content {
  padding: 80px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-vision {
  padding: 80px 0;
  background: #f8f9fa;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #333, #555);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mv-icon i {
  font-size: 32px;
  color: white;
}

.mv-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.mv-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.values {
  padding: 80px 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
}

.value-card i {
  font-size: 48px;
  color: #333;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

.team {
  padding: 80px 0;
  background: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-member {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 5px;
  color: #333;
}

.position {
  color: #666;
  font-weight: 500;
  margin-bottom: 15px;
}

.description {
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}

.stats {
  padding: 80px 0;
  background: #333;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.stat-label {
  font-size: 18px;
  color: #ccc;
}

/* Contact Page Styles */
.contact-info-section {
  padding: 60px 0;
  background: white;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-info-card {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-info-icon i {
  font-size: 24px;
  color: white;
}

.contact-info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.contact-info-card p {
  color: #666;
  margin-bottom: 5px;
}

.contact-form-map {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-form-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.contact-form-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #333;
}

.map-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.map-info {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.map-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.map-info p {
  color: #666;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-info i {
  color: #333;
  width: 20px;
}

.social-media-section {
  padding: 80px 0;
  background: white;
}

.social-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.social-media-card {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
}

.social-media-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
}

.social-media-icon.whatsapp {
  background: #25d366;
}

.social-media-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-media-icon.facebook {
  background: #1877f2;
}

.social-media-icon.youtube {
  background: #ff0000;
}

.social-media-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.social-media-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.faq-question i {
  color: #666;
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Custom Page Styles */
.custom-services {
  padding: 80px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #333, #555);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 32px;
  color: white;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  color: #666;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: bold;
}

.process-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #333;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon i {
  font-size: 32px;
  color: #333;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

.custom-form-section {
  padding: 80px 0;
  background: white;
}

.custom-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.form-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.form-features {
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.feature i {
  color: #28a745;
  font-size: 18px;
}

.feature span {
  color: #333;
  font-weight: 500;
}

.custom-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
}

.examples-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.example-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.example-card:hover {
  transform: translateY(-5px);
}

.example-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.example-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 20px 10px;
  color: #333;
}

.example-card p {
  color: #666;
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* STL Calculator Styles */
.stl-calculator-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
}

.stl-calculator-section .section-title {
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.stl-calculator-section .section-subtitle {
  text-align: center;
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 50px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.file-upload-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.file-upload-area {
  text-align: center;
  padding: 40px 20px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-area:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.file-upload-area.dragover {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
}

.upload-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.file-upload-area h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.file-upload-area p {
  margin-bottom: 25px;
  opacity: 0.8;
}

.file-info {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
}

.file-details {
  display: flex;
  align-items: center;
  gap: 15px;
}

.file-details i {
  font-size: 24px;
  color: #4caf50;
}

.file-text h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
}

.file-text p {
  margin: 0;
  opacity: 0.8;
  font-size: 14px;
}

.remove-file {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: auto;
  transition: all 0.3s ease;
}

.remove-file:hover {
  background: rgba(255, 255, 255, 0.3);
}

.price-calculator-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.calculator-card h3 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 24px;
}

.calculator-form {
  margin-bottom: 30px;
}

.calculator-form .form-group {
  margin-bottom: 20px;
}

.calculator-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  opacity: 0.9;
}

.calculator-form select,
.calculator-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.calculator-form select:focus,
.calculator-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

.calculator-form select option {
  background: #333;
  color: white;
}

.calculation-results {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
  border-bottom: none;
}

.result-item.total-price {
  font-weight: 700;
  font-size: 18px;
  color: #4caf50;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  margin-top: 10px;
  padding-top: 15px;
}

#calculatePriceBtn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
}

#calculatePriceBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive Design for STL Calculator */
@media (max-width: 768px) {
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .file-upload-area {
    padding: 30px 15px;
  }

  .upload-icon {
    font-size: 36px;
  }

  .file-upload-area h3 {
    font-size: 20px;
  }
}

/* Slider Banner Styles */
.slider-banner {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.slider-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

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

.slider-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  height: 100%;
  padding: 40px;
  position: relative;
  z-index: 2;
}

.slide-text {
  flex: 1;
  color: white;
  max-width: 500px;
}

.slide-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.slide-image {
  flex: 1;
  text-align: center;
  max-width: 500px;
}

.slide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-nav-btn.active {
  background: white;
  border-color: white;
  transform: scale(1.2);
}

.slider-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.slider-prev {
  right: 70px;
}

.slider-next {
  right: 20px;
}

@media (max-width: 768px) {
  .slider-banner {
    padding: 40px 0;
  }

  .slider-wrapper {
    height: 350px;
  }

  .slide-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .slide-text h2 {
    font-size: 32px;
  }

  .slide-text p {
    font-size: 16px;
  }

  .slide-image {
    max-width: 300px;
    margin-top: 20px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-prev {
    left: 15px;
  }

  .slider-next {
    right: 15px;
  }
}

@media (max-width: 480px) {
  .slider-banner {
    padding: 30px 0;
  }

  .slider-wrapper {
    height: 300px;
  }

  .slide-text h2 {
    font-size: 24px;
  }

  .slide-text p {
    font-size: 14px;
  }

  .slide-text .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .slide-image {
    max-width: 250px;
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

.banner-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot.active {
  background: white;
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Opportunity Products Section */
.opportunity-products {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.opportunity-products .section-header h2 {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.opportunity-card {
  position: relative;
  border: 2px solid #ff6b6b;
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.opportunity-card:hover {
  border-color: #ee5a24;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

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

.no-products {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-products i {
  font-size: 4rem;
  color: #ff6b6b;
  margin-bottom: 20px;
  opacity: 0.5;
}

.no-products h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.no-products p {
  font-size: 1.1rem;
  color: #666;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Products Section */
.featured-products {
  padding: 80px 0;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.product-category {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.product-price {
  margin-bottom: 20px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin-right: 10px;
}

.current-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e74c3c;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.section-footer {
  text-align: center;
  margin-top: 50px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #333;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

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

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.contact-card p {
  margin-bottom: 25px;
  color: #666;
  line-height: 1.6;
}

/* Profile Page Styles */
.main-content {
  padding: 40px 0;
  min-height: calc(100vh - 140px);
}

.profile-header {
  text-align: center;
  margin-bottom: 40px;
}

.profile-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.profile-header p {
  font-size: 1.1rem;
  color: #666;
}

.profile-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.profile-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.profile-card p {
  color: #666;
  margin-bottom: 20px;
}

.profile-stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.quick-action-btn:hover {
  background: #f8f9fa;
  border-color: #333;
  transform: translateY(-2px);
  text-decoration: none;
  color: #333;
}

.quick-action-btn i {
  font-size: 1.2rem;
  color: #333;
}

.profile-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.profile-section {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.profile-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.form-section {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
  margin-top: 20px;
}

.form-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.orders-list,
.custom-orders-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-item,
.custom-order-item {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.order-item:hover,
.custom-order-item:hover {
  border-color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.order-header,
.custom-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.order-number {
  font-weight: 600;
  color: #333;
}

.order-date {
  color: #666;
  font-size: 0.9rem;
}

.order-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-processing {
  background: #cce5ff;
  color: #004085;
}

.status-shipped {
  background: #d1ecf1;
  color: #0c5460;
}

.status-delivered {
  background: #d4edda;
  color: #155724;
}

.status-cancelled {
  background: #f8d7da;
  color: #721c24;
}

.status-reviewing {
  background: #e2e3e5;
  color: #383d41;
}

.status-approved {
  background: #d1ecf1;
  color: #0c5460;
}

.status-completed {
  background: #d4edda;
  color: #155724;
}

.order-details,
.custom-order-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.order-amount {
  font-weight: 600;
  color: #e74c3c;
  font-size: 1.1rem;
}

.order-items {
  color: #666;
  font-size: 0.9rem;
}

.file-name {
  font-weight: 500;
  color: #333;
}

.view-all {
  text-align: center;
  margin-top: 20px;
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.empty-state i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 20px;
}

.empty-state p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Responsive Design for Profile */
@media (max-width: 768px) {
  .profile-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .order-header,
  .custom-order-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-details,
  .custom-order-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-header h1 {
    font-size: 2rem;
  }
}

/* Banner Navigation */
.banner-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.banner-nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-nav-btn.active {
  background: white;
  border-color: white;
  transform: scale(1.2);
}

.banner-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
}

/* Banner Arrows */
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.banner-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.banner-prev {
  left: 30px;
}

.banner-next {
  right: 30px;
}

/* Banner Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

/* Responsive Design for New Banner */
@media (max-width: 768px) {
  .new-banner {
    padding: 40px 0;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .banner-text h2 {
    font-size: 32px;
  }

  .banner-text p {
    font-size: 16px;
  }

  .banner-image {
    max-width: 300px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .new-banner {
    padding: 30px 0;
  }

  .banner-text h2 {
    font-size: 24px;
  }

  .banner-text p {
    font-size: 14px;
  }

  .banner-text .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .banner-image {
    max-width: 250px;
  }
}

/* Promo Banner Styles */
.promo-banner {
  background: linear-gradient(
    90deg,
    #ff6b6b,
    #4ecdc4,
    #45b7d1,
    #96ceb4,
    #feca57
  );
  background-size: 400% 100%;
  animation: gradientShift 8s ease infinite;
  color: white;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 1000;
}

.promo-content {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

.promo-text {
  display: inline-block;
  animation: slideLeft 20s linear infinite;
  font-weight: 500;
  font-size: 14px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes slideLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 200% 50%;
  }
  75% {
    background-position: 300% 50%;
  }
}

/* Responsive Design for Promo Banner */
@media (max-width: 768px) {
  .promo-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .promo-text {
    font-size: 11px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* Hero Section with Background Image */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%),
    url("machine.svg") center center/cover no-repeat;
  background-attachment: fixed;
  padding: 80px 0;
}

/* Background overlay for better text readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
  z-index: 1;
}

/* Removed animated background elements for cleaner look */

/* Removed all parallax animations */

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo artık arka planda olduğu için bu CSS'ler kaldırıldı */

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Title glow animation removed */

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating elements removed for cleaner background */

/* Hero Content */
.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

/* Logo artık arka planda olduğu için bu CSS'ler kaldırıldı */

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.typewriter-text {
  color: #ffd700;
  border-right: 3px solid #ffd700;
  animation: typewriter 3s steps(20) infinite, blink 1s infinite;
}

@keyframes typewriter {
  0%,
  90%,
  100% {
    width: 0;
  }
  30%,
  60% {
    width: 100%;
  }
}

@keyframes blink {
  0%,
  50% {
    border-color: transparent;
  }
  51%,
  100% {
    border-color: #ffd700;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #555 0%, #333 100%);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

/* Responsive Design for Scroll to Top */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* Header Main Section */
.header-main {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: logoEntrance 1s ease-out;
  position: relative;
  z-index: 1001;
}

.logo-image {
  width: 45px;
  height: 45px;
  object-fit: contain;
  animation: logoSpin 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.logo-image:hover {
  transform: scale(1.2) rotate(180deg);
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.logo-text {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  animation: logoTextGlow 2s ease-in-out infinite alternate;
  position: relative;
  z-index: 1002;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Logo Animations */
@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes logoTextGlow {
  0% {
    text-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
  }
}

/* Logo Sabit Pozisyon */
.logo {
  position: relative;
  z-index: 1001;
}

.logo-container {
  position: sticky;
  top: 0;
  z-index: 1002;
}

/* Logo Hover Efektleri */
.logo-container:hover .logo-image {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.4));
}

.logo-container:hover .logo-text {
  color: #007bff;
  text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

/* Ana Sayfa Logo Özel Stilleri */
.homepage-logo {
  position: relative;
  z-index: 1003;
}

.homepage-logo .logo-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.homepage-logo .logo-image {
  animation: logoSpin 4s ease-in-out infinite;
}

.homepage-logo .logo-text {
  background: linear-gradient(45deg, #333, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.search-bar {
  display: flex;
  max-width: 500px;
}

.search-bar input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 25px 0 0 25px;
  font-size: 16px;
  outline: none;
}

.search-bar input:focus {
  border-color: #333;
}

.search-bar button {
  background: #333;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  font-size: 16px;
}

.header-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.header-actions a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.whatsapp-btn {
  background: #25d366;
  color: white !important;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

.instagram-btn {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white !important;
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== CLEAN MOBILE DESIGN ===== */

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
  /* ===== HEADER ===== */
  .header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .logo-container {
    gap: 8px;
  }

  .logo-image {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
  }

  .search-bar {
    display: none;
  }

  .user-actions {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .auth-btn {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 6px;
    background: #333;
    color: white;
    border: none;
  }

  .auth-btn span {
    display: none;
  }

  .auth-btn i {
    font-size: 14px;
  }

  /* ===== HAMBURGER MENU ===== */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* ===== NAVIGATION ===== */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .main-nav li {
    margin: 15px 0;
  }

  .main-nav a {
    display: block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
  }

  .main-nav a:hover {
    background: #f5f5f5;
  }

  /* ===== DROPDOWN ===== */
  .dropdown-menu {
    position: static;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 10px 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
  }

  .dropdown.active .dropdown-menu {
    max-height: 200px;
  }

  .dropdown-menu a {
    font-size: 16px !important;
    padding: 12px 20px !important;
    margin: 5px !important;
    background: #fff !important;
    border-radius: 6px !important;
    color: #333 !important;
  }

  .dropdown-menu a:hover {
    background: #f0f0f0 !important;
  }

  /* ===== HERO SECTION ===== */
  .hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  }

  .hero-logo {
    margin-bottom: 20px;
  }

  .hero-logo-image {
    width: 80px;
    height: 80px;
  }

  .hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
  }

  .btn-primary {
    background: #333;
    color: white;
  }

  .btn-secondary {
    background: #fff;
    color: #333;
    border: 2px solid #333;
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  /* ===== PROMO BANNER ===== */
  .promo-banner {
    background: #333;
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
  }

  /* ===== CATEGORY GRID ===== */
  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: 0.3s;
  }

  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .category-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
  }

  .category-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
  }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    padding: 40px 20px;
    background: #f9f9f9;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
  }

  .contact-card p {
    font-size: 14px;
    color: #666;
  }

  /* ===== FOOTER ===== */
  .footer {
    background: #333;
    color: white;
    padding: 40px 20px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    animation: footerLogoPulse 3s ease-in-out infinite;
  }

  .footer-logo-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: footerLogoRotate 8s linear infinite;
  }

  .footer-section h3 {
    font-size: 18px;
    margin: 0;
  }

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

  @keyframes footerLogoRotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .footer-section p,
  .footer-section a {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
  }

  /* ===== MODAL ===== */
  .modal-content {
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .modal-header h2 {
    font-size: 20px;
    color: #333;
  }

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

  .form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
  }

  .form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

  .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  /* ===== UTILITY ===== */
  .container {
    padding: 0 20px;
  }

  /* Hide desktop elements */
  .floating-elements,
  .parallax-layer {
    display: none;
  }

  /* Auth buttons adjustments */
  .auth-btn span {
    display: none;
  }

  .auth-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
  /* ===== HEADER ===== */
  .header-main {
    padding: 12px 15px;
  }

  .logo-image {
    width: 28px;
    height: 28px;
  }

  .logo-text {
    font-size: 20px;
  }

  .auth-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  /* ===== HAMBURGER MENU ===== */
  .mobile-menu-toggle {
    width: 28px;
    height: 22px;
  }

  /* ===== HERO SECTION ===== */
  .hero {
    padding: 40px 15px;
  }

  .hero-logo-image {
    width: 60px;
    height: 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn {
    max-width: 220px;
    padding: 12px 20px;
    font-size: 15px;
  }

  /* ===== PROMO BANNER ===== */
  .promo-banner {
    padding: 10px 15px;
    font-size: 13px;
  }

  /* ===== CATEGORY GRID ===== */
  .category-grid {
    gap: 15px;
    padding: 15px;
  }

  .category-card {
    padding: 25px 15px;
  }

  .category-card h3 {
    font-size: 18px;
  }

  .category-card p {
    font-size: 14px;
  }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    padding: 30px 15px;
  }

  .contact-card {
    padding: 20px 15px;
  }

  .contact-card h3 {
    font-size: 16px;
  }

  .contact-card p {
    font-size: 14px;
  }

  /* ===== FOOTER ===== */
  .footer {
    padding: 30px 15px;
  }

  .footer-logo {
    gap: 8px;
    margin-bottom: 12px;
  }

  .footer-logo-image {
    width: 20px;
    height: 20px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 13px;
  }

  .social-links a {
    width: 28px;
    height: 28px;
  }

  .social-links a i {
    font-size: 12px;
  }

  /* ===== MODAL ===== */
  .modal-content {
    width: 95%;
    max-width: 300px;
    margin: 15px auto;
  }

  .modal-header h2 {
    font-size: 18px;
  }

  .form-group input {
    padding: 10px 12px;
    font-size: 15px;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 15px;
  }

  /* ===== UTILITY ===== */
  .container {
    padding: 0 15px;
  }
}

/* Small Mobile Styles (320px and below) */
@media (max-width: 320px) {
  .container {
    padding: 0 8px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .section-title {
    font-size: 24px;
  }

  .banner-text h3 {
    font-size: 20px;
  }

  .category-card h3 {
    font-size: 18px;
  }

  .product-title {
    font-size: 14px;
  }

  .contact-card h3 {
    font-size: 16px;
  }
}

/* Landscape Mobile Styles */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 60vh;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .category-card:hover,
  .product-card:hover,
  .contact-card:hover,
  .offer-card:hover {
    transform: none;
  }

  .banner-btn:hover,
  .scroll-to-top:hover {
    transform: none;
  }

  /* Increase touch targets */
  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .banner-nav-btn {
    width: 16px;
    height: 16px;
  }

  .banner-arrow {
    width: 50px;
    height: 50px;
  }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-title,
  .section-title,
  .category-card h3,
  .product-title {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-icon,
  .parallax-layer {
    animation: none;
  }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: var(--border-radius);
  color: white;
  font-weight: 500;
  z-index: 9999;
  box-shadow: var(--shadow-medium);
  transform: translateX(100%);
  animation: slideIn 0.3s ease forwards;
  max-width: 300px;
}

.notification-success {
  background-color: var(--success-color);
}

.notification-error {
  background-color: var(--danger-color);
}

.notification-warning {
  background-color: var(--warning-color);
  color: var(--text-dark);
}

.notification-info {
  background-color: var(--accent-color);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.notification.removing {
  animation: slideOut 0.3s ease forwards;
}

/* Profile Page Specific Styles */
.profile-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 30px;
  overflow-x: auto;
}

.tab-button {
  padding: 15px 25px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-button:hover {
  color: var(--accent-color);
}

.tab-button.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Form Styles for Profile */
.profile-form {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Profile Photo Upload */
.profile-photo-section {
  text-align: center;
  margin-bottom: 30px;
}

.profile-photo-preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--border-light);
  display: none;
}

.photo-upload-btn {
  background: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.photo-upload-btn:hover {
  background: #0056b3;
}

/* Address Management */
.address-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 15px;
  position: relative;
}

.address-card.default {
  border-color: var(--accent-color);
  background: rgba(0, 123, 255, 0.05);
}

.address-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

.address-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: var(--transition);
}

.address-action-btn:hover {
  background: var(--bg-light);
}

.delete-address {
  color: var(--danger-color);
}

.set-default-address {
  color: var(--accent-color);
}

/* Notification Settings */
.notification-settings {
  background: var(--bg-white);
  padding: 25px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-toggle {
  position: relative;
  width: 50px;
  height: 24px;
  background: var(--border-light);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.notification-toggle.active {
  background: var(--accent-color);
}

.notification-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.notification-toggle.active::after {
  transform: translateX(26px);
}

/* Recent Orders */
.recent-orders {
  background: var(--bg-white);
  padding: 25px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.custom-order-item {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 15px;
  margin-bottom: 15px;
}

.custom-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.order-number {
  font-weight: 600;
  color: var(--accent-color);
}

.order-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.order-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-reviewing {
  background: #d1ecf1;
  color: #0c5460;
}

.status-approved {
  background: #d4edda;
  color: #155724;
}

.status-processing {
  background: #cce5ff;
  color: #004085;
}

.status-completed {
  background: #d1e7dd;
  color: #0f5132;
}

.status-cancelled {
  background: #f8d7da;
  color: #721c24;
}

.status-reviewing {
  background: #e2e3e5;
  color: #383d41;
}

.status-approved {
  background: #d1ecf1;
  color: #0c5460;
}

.status-completed {
  background: #d4edda;
  color: #155724;
}

.order-details,
.custom-order-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.order-amount {
  font-weight: 600;
  color: #e74c3c;
  font-size: 1.1rem;
}

.order-items {
  color: #666;
  font-size: 0.9rem;
}

.file-name {
  font-weight: 500;
  color: #333;
}

.view-all {
  text-align: center;
  margin-top: 20px;
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.empty-state i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 20px;
}

.empty-state p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Responsive Design for Profile */
@media (max-width: 768px) {
  .profile-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .order-header,
  .custom-order-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-details,
  .custom-order-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-header h1 {
    font-size: 2rem;
  }
}

/* Banner Navigation */
.banner-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.banner-nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-nav-btn.active {
  background: white;
  border-color: white;
  transform: scale(1.2);
}

.banner-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
}

/* Banner Arrows */
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.banner-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.banner-prev {
  left: 30px;
}

.banner-next {
  right: 30px;
}

/* Banner Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

/* Responsive Design for New Banner */
@media (max-width: 768px) {
  .new-banner {
    padding: 40px 0;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .banner-text h2 {
    font-size: 32px;
  }

  .banner-text p {
    font-size: 16px;
  }

  .banner-image {
    max-width: 300px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .new-banner {
    padding: 30px 0;
  }

  .banner-text h2 {
    font-size: 24px;
  }

  .banner-text p {
    font-size: 14px;
  }

  .banner-text .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .banner-image {
    max-width: 250px;
  }
}

/* Promo Banner Styles */
.promo-banner {
  background: linear-gradient(
    90deg,
    #ff6b6b,
    #4ecdc4,
    #45b7d1,
    #96ceb4,
    #feca57
  );
  background-size: 400% 100%;
  animation: gradientShift 8s ease infinite;
  color: white;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 1000;
}

.promo-content {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

.promo-text {
  display: inline-block;
  animation: slideLeft 20s linear infinite;
  font-weight: 500;
  font-size: 14px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes slideLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 200% 50%;
  }
  75% {
    background-position: 300% 50%;
  }
}

/* Responsive Design for Promo Banner */
@media (max-width: 768px) {
  .promo-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .promo-text {
    font-size: 11px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* Hero Section with Background Image */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%),
    url("machine.svg") center center/cover no-repeat;
  background-attachment: fixed;
  padding: 80px 0;
}

/* Background overlay for better text readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
  z-index: 1;
}

/* Removed animated background elements for cleaner look */

/* Removed all parallax animations */

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo artık arka planda olduğu için bu CSS'ler kaldırıldı */

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Title glow animation removed */

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating elements removed for cleaner background */

/* Hero Content */
.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

/* Logo artık arka planda olduğu için bu CSS'ler kaldırıldı */

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.typewriter-text {
  color: #ffd700;
  border-right: 3px solid #ffd700;
  animation: typewriter 3s steps(20) infinite, blink 1s infinite;
}

@keyframes typewriter {
  0%,
  90%,
  100% {
    width: 0;
  }
  30%,
  60% {
    width: 100%;
  }
}

@keyframes blink {
  0%,
  50% {
    border-color: transparent;
  }
  51%,
  100% {
    border-color: #ffd700;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #555 0%, #333 100%);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

/* Responsive Design for Scroll to Top */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* Header Main Section */
.header-main {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: logoEntrance 1s ease-out;
  position: relative;
  z-index: 1001;
}

.logo-image {
  width: 45px;
  height: 45px;
  object-fit: contain;
  animation: logoSpin 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.logo-image:hover {
  transform: scale(1.2) rotate(180deg);
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.logo-text {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  animation: logoTextGlow 2s ease-in-out infinite alternate;
  position: relative;
  z-index: 1002;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Logo Animations */
@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes logoTextGlow {
  0% {
    text-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
  }
}

/* Logo Sabit Pozisyon */
.logo {
  position: relative;
  z-index: 1001;
}

.logo-container {
  position: sticky;
  top: 0;
  z-index: 1002;
}

/* Logo Hover Efektleri */
.logo-container:hover .logo-image {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.4));
}

.logo-container:hover .logo-text {
  color: #007bff;
  text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

/* Ana Sayfa Logo Özel Stilleri */
.homepage-logo {
  position: relative;
  z-index: 1003;
}

.homepage-logo .logo-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.homepage-logo .logo-image {
  animation: logoSpin 4s ease-in-out infinite;
}

.homepage-logo .logo-text {
  background: linear-gradient(45deg, #333, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.search-bar {
  display: flex;
  max-width: 500px;
}

.search-bar input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 25px 0 0 25px;
  font-size: 16px;
  outline: none;
}

.search-bar input:focus {
  border-color: #333;
}

.search-bar button {
  background: #333;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  font-size: 16px;
}

.header-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.header-actions a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.whatsapp-btn {
  background: #25d366;
  color: white !important;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

.instagram-btn {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white !important;
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== CLEAN MOBILE DESIGN ===== */

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
  /* ===== HEADER ===== */
  .header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .logo-container {
    gap: 8px;
  }

  .logo-image {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
  }

  .search-bar {
    display: none;
  }

  .user-actions {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .auth-btn {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 6px;
    background: #333;
    color: white;
    border: none;
  }

  .auth-btn span {
    display: none;
  }

  .auth-btn i {
    font-size: 14px;
  }

  /* ===== HAMBURGER MENU ===== */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* ===== NAVIGATION ===== */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .main-nav li {
    margin: 15px 0;
  }

  .main-nav a {
    display: block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
  }

  .main-nav a:hover {
    background: #f5f5f5;
  }

  /* ===== DROPDOWN ===== */
  .dropdown-menu {
    position: static;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 10px 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
  }

  .dropdown.active .dropdown-menu {
    max-height: 200px;
  }

  .dropdown-menu a {
    font-size: 16px !important;
    padding: 12px 20px !important;
    margin: 5px !important;
    background: #fff !important;
    border-radius: 6px !important;
    color: #333 !important;
  }

  .dropdown-menu a:hover {
    background: #f0f0f0 !important;
  }

  /* ===== HERO SECTION ===== */
  .hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  }

  .hero-logo {
    margin-bottom: 20px;
  }

  .hero-logo-image {
    width: 80px;
    height: 80px;
  }

  .hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
  }

  .btn-primary {
    background: #333;
    color: white;
  }

  .btn-secondary {
    background: #fff;
    color: #333;
    border: 2px solid #333;
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  /* ===== PROMO BANNER ===== */
  .promo-banner {
    background: #333;
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
  }

  /* ===== CATEGORY GRID ===== */
  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: 0.3s;
  }

  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .category-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
  }

  .category-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
  }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    padding: 40px 20px;
    background: #f9f9f9;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
  }

  .contact-card p {
    font-size: 14px;
    color: #666;
  }

  /* ===== FOOTER ===== */
  .footer {
    background: #333;
    color: white;
    padding: 40px 20px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    animation: footerLogoPulse 3s ease-in-out infinite;
  }

  .footer-logo-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: footerLogoRotate 8s linear infinite;
  }

  .footer-section h3 {
    font-size: 18px;
    margin: 0;
  }

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

  @keyframes footerLogoRotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .footer-section p,
  .footer-section a {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
  }

  /* ===== MODAL ===== */
  .modal-content {
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .modal-header h2 {
    font-size: 20px;
    color: #333;
  }

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

  .form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
  }

  .form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

  .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  /* ===== UTILITY ===== */
  .container {
    padding: 0 20px;
  }

  /* Hide desktop elements */
  .floating-elements,
  .parallax-layer {
    display: none;
  }

  /* Auth buttons adjustments */
  .auth-btn span {
    display: none;
  }

  .auth-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
  /* ===== HEADER ===== */
  .header-main {
    padding: 12px 15px;
  }

  .logo-image {
    width: 28px;
    height: 28px;
  }

  .logo-text {
    font-size: 20px;
  }

  .auth-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  /* ===== HAMBURGER MENU ===== */
  .mobile-menu-toggle {
    width: 28px;
    height: 22px;
  }

  /* ===== HERO SECTION ===== */
  .hero {
    padding: 40px 15px;
  }

  .hero-logo-image {
    width: 60px;
    height: 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn {
    max-width: 220px;
    padding: 12px 20px;
    font-size: 15px;
  }

  /* ===== PROMO BANNER ===== */
  .promo-banner {
    padding: 10px 15px;
    font-size: 13px;
  }

  /* ===== CATEGORY GRID ===== */
  .category-grid {
    gap: 15px;
    padding: 15px;
  }

  .category-card {
    padding: 25px 15px;
  }

  .category-card h3 {
    font-size: 18px;
  }

  .category-card p {
    font-size: 14px;
  }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    padding: 30px 15px;
  }

  .contact-card {
    padding: 20px 15px;
  }

  .contact-card h3 {
    font-size: 16px;
  }

  .contact-card p {
    font-size: 14px;
  }

  /* ===== FOOTER ===== */
  .footer {
    padding: 30px 15px;
  }

  .footer-logo {
    gap: 8px;
    margin-bottom: 12px;
  }

  .footer-logo-image {
    width: 20px;
    height: 20px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 13px;
  }

  .social-links a {
    width: 28px;
    height: 28px;
  }

  .social-links a i {
    font-size: 12px;
  }

  /* ===== MODAL ===== */
  .modal-content {
    width: 95%;
    max-width: 300px;
    margin: 15px auto;
  }

  .modal-header h2 {
    font-size: 18px;
  }

  .form-group input {
    padding: 10px 12px;
    font-size: 15px;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 15px;
  }

  /* ===== UTILITY ===== */
  .container {
    padding: 0 15px;
  }
}

/* Small Mobile Styles (320px and below) */
@media (max-width: 320px) {
  .container {
    padding: 0 8px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .section-title {
    font-size: 24px;
  }

  .banner-text h3 {
    font-size: 20px;
  }

  .category-card h3 {
    font-size: 18px;
  }

  .product-title {
    font-size: 14px;
  }

  .contact-card h3 {
    font-size: 16px;
  }
}

/* Landscape Mobile Styles */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 60vh;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .category-card:hover,
  .product-card:hover,
  .contact-card:hover,
  .offer-card:hover {
    transform: none;
  }

  .banner-btn:hover,
  .scroll-to-top:hover {
    transform: none;
  }

  /* Increase touch targets */
  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .banner-nav-btn {
    width: 16px;
    height: 16px;
  }

  .banner-arrow {
    width: 50px;
    height: 50px;
  }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-title,
  .section-title,
  .category-card h3,
  .product-title {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-icon,
  .parallax-layer {
    animation: none;
  }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: var(--border-radius);
  color: white;
  font-weight: 500;
  z-index: 9999;
  box-shadow: var(--shadow-medium);
  transform: translateX(100%);
  animation: slideIn 0.3s ease forwards;
  max-width: 300px;
}

.notification-success {
  background-color: var(--success-color);
}

.notification-error {
  background-color: var(--danger-color);
}

.notification-warning {
  background-color: var(--warning-color);
  color: var(--text-dark);
}

.notification-info {
  background-color: var(--accent-color);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.notification.removing {
  animation: slideOut 0.3s ease forwards;
}

/* Profile Page Specific Styles */
.profile-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 30px;
  overflow-x: auto;
}

.tab-button {
  padding: 15px 25px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-button:hover {
  color: var(--accent-color);
}

.tab-button.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Form Styles for Profile */
.profile-form {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Profile Photo Upload */
.profile-photo-section {
  text-align: center;
  margin-bottom: 30px;
}

.profile-photo-preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--border-light);
  display: none;
}

.photo-upload-btn {
  background: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.photo-upload-btn:hover {
  background: #0056b3;
}

/* Address Management */
.address-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 15px;
  position: relative;
}

.address-card.default {
  border-color: var(--accent-color);
  background: rgba(0, 123, 255, 0.05);
}

.address-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

.address-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: var(--transition);
}

.address-action-btn:hover {
  background: var(--bg-light);
}

.delete-address {
  color: var(--danger-color);
}

.set-default-address {
  color: var(--accent-color);
}

/* Notification Settings */
.notification-settings {
  background: var(--bg-white);
  padding: 25px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-toggle {
  position: relative;
  width: 50px;
  height: 24px;
  background: var(--border-light);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.notification-toggle.active {
  background: var(--accent-color);
}

.notification-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.notification-toggle.active::after {
  transform: translateX(26px);
}

/* Recent Orders */
.recent-orders {
  background: var(--bg-white);
  padding: 25px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.custom-order-item {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 15px;
  margin-bottom: 15px;
}

.custom-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.order-number {
  font-weight: 600;
  color: var(--accent-color);
}

.order-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.order-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-reviewing {
  background: #d1ecf1;
  color: #0c5460;
}

.status-approved {
  background: #d4edda;
  color: #155724;
}

.status-processing {
  background: #cce5ff;
  color: #004085;
}

.status-completed {
  background: #d1e7dd;
  color: #0f5132;
}

.status-cancelled {
  background: #f8d7da;
  color: #721c24;
}

.custom-order-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.file-name {
  font-weight: 500;
  color: var(--text-dark);
}

.order-amount {
  font-weight: 600;
  color: var(--accent-color);
}

/* Mobile Responsive for Profile */
@media (max-width: 768px) {
  .profile-tabs {
    flex-direction: column;
    border-bottom: none;
  }

  .tab-button {
    border-bottom: none;
    border-left: 3px solid transparent;
    text-align: left;
  }

  .tab-button.active {
    border-left-color: var(--accent-color);
    border-bottom-color: transparent;
  }

  .profile-form {
    padding: 20px;
  }

  .address-actions {
    position: static;
    margin-top: 15px;
    justify-content: flex-end;
  }

  .custom-order-header,
  .custom-order-details {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Dropdown Menu Styles */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  margin-top: 8px;
  min-width: 200px;
  animation: fadeInUp 0.3s ease;
  z-index: 1000;
}

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

.dropdown-item {
  color: #333;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 2px 8px;
  text-decoration: none;
  display: block;
}

.dropdown-item:hover {
  background: #000000;
  color: white;
  transform: translateX(5px);
  text-decoration: none;
}

.dropdown-item i {
  margin-right: 10px;
  width: 16px;
  text-align: center;
}

.dropdown-divider {
  margin: 8px 0;
  border-color: rgba(0, 0, 0, 0.1);
}

.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-toggle::after {
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Mobile dropdown adjustments */
@media (max-width: 991.98px) {
  .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown-item {
    padding: 8px 15px;
    margin: 0;
    border-radius: 0;
  }

  .dropdown-item:hover {
    transform: none;
    background: rgba(0, 0, 0, 0.1);
    color: #000;
  }
}
