* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #d1daf1, #203667);
  color: #1f2a44;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  max-height: 150px;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(14px);
  z-index: 99;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  font-size: 48px;
  font-weight: 700;
  color: #3d5a9d;
}

.center-logo {
  height: 100px;
  width: 100px;
  margin-top: 5px;
  margin-right: 110px;
}


.brand h1 {
  font-size: 32px;
  font-weight: 800;
}

.brand h3 {
  font-size: 20px;
  font-weight: 600;
  color: #3d5a9d;
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.lang-group {
  display: flex;
  gap: 12px;
}

.lang-btn {
  border: none;
  background: #f0e8d8;
  padding: 14px 22px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
}

.lang-btn:hover {
  background: #d8b4a4;
}

.header .wp-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .wp-container .WpIcon {
  height: 40px;
  width: 40px;
}

.header .wp-container .number {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #1f2a44;
}
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.categories button {
  width: 100%;
  display: inline-block;
  flex: 1 1 150px;
  padding: 16px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #6896d5, #21345f);
  color: white;
  font-weight: 700;
  font-size: 25px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
  margin: 12px 0;
}

.categories button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #3d5a9d, #2a4175);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.main {
  flex: 1;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.card {
  background: white;
  padding: 40px;      
  border-radius: 28px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s ease;
  min-width: 300px;   
  min-height: 220px;  
}

.card h4 {
  font-size: 32px;    
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2a44;
}

.card p {
  font-size: 20px;    
  margin-bottom: 10px;
  color: #273e72;
  font-weight: 600;
}

.card small {
  font-size: 25px;    
  color: #3d5a9d;
  font-weight: 700;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.modal.active {
  display: flex;
}

.modal-box {
  font-size: 30px;
  background: white;
  padding: 40px;         
  border-radius: 28px;
  width: 90%;            
  max-width: 600px;      
  min-height: 200px;      
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.25);
  animation: pop .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 12px;              
}


@keyframes pop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* MOBİL TASARIM */
@media (max-width: 900px) {
  .categories button {
    font-size: 22px;
    padding: 18px 24px;
  }
  .lang-btn {
    font-size: 20px;
    padding: 16px 24px;
  }
}
