/* style.css */

body {
  background: linear-gradient(rgba(1, 66, 255, 0.5), rgba(1, 66, 255, 0.5)),
              url('https://smile.tr/images/bg2.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Titillium Web', sans-serif;
  padding: 0;
  margin: 0;
  color: #fff;
}

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

.intro-text {
  text-align: left;
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  padding: 0 20px;
}

.intro-text em {
  font-style: italic;
  font-weight: 200;
  font-size: 20px;
  display: block;
  margin-top: 5px;
  opacity: 0.9;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.form-group {
  flex: 1 1 22%;
  min-width: 100px;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0142ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 10000;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  max-width: 200px;
  height: auto;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-button {
  text-decoration: none;
  background: white;
  color: #0142ff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
}

.language-selector {
  position: relative;
}

.language-toggle {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.language-toggle img {
  width: 30px;
  height: 20px;
  object-fit: contain;
  border-radius: 0;
}

.language-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background-color: #333;
  border: 1px solid #555;
  border-radius: 8px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 1000;
  width: 120px;
}

.language-dropdown li {
  padding: 6px 12px;
}

.language-dropdown li a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.language-dropdown li a:hover {
  background-color: #444;
}

.language-dropdown li img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 0;
}

.language-selector:hover .language-dropdown {
  display: block;
}

.form-group select,
.form-group input,
.btn-primary {
  border-radius: 20px;
  padding: 8px 12px;
  border: none;
  font-size: 14px;
  width: 100%;
}

.product {
  margin-bottom: 10px;
  flex: 1 1 calc(33% - 20px);
  min-width: 140px;
  max-width: 250px;
}

.product-inner {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,.3);
  padding: 15px;
  text-align: center;
  color: #000;
  transition: transform 0.3s ease;
}

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

.product-inner img {
  margin-bottom: 10px;
  width: 100%;
  border-radius: 10px;
}

.product-name {
  font-weight: bold;
  font-size: 16px;
}

.tag {
  display: inline-block;
  background-color: #e0e0e0;
  color: #333;
  border-radius: 15px;
  padding: 5px 10px;
  margin: 2px;
  font-size: 12px;
}

.btn-view {
  background-color: #0142ff;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 25px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-view:hover {
  background-color: #0026a3;
}
#filter form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#filter .form-group {
  flex: 1 1 200px;
  min-width: 150px;
}

<!-- HTML -->
<button type="submit" class="btn btn-block btn-primary custom-btn">Uzman Bul</button>

<!-- CSS -->
<style>
  .custom-btn {
    border-radius: 50px;
    background-color: #24A1DE !important;
    font-weight: bold;
    border: none;
  }
</style>

