/* Umumiy */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f7f7f7 0%, #eef5ee 100%);
  color: #333;
  line-height: 1.6;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 4px 12px rgba(13, 96, 18, 0.15);
  z-index: 1000;
  border-bottom: 3px solid #0d6012;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: space-between;
}

.logo-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.brand-text {
  font-size: 24px;
  font-weight: 700;
  color: #0d6012;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.telegram-icon img {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.telegram-icon img:hover {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* ABOUT */
.about {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 100px auto 60px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(13, 96, 18, 0.1);
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

.about-text {
  flex: 1;
  color: #222;
}

.about-text h2 {
  color: #0d6012;
  margin-top: 0;
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0d6012, #4caf50);
  border-radius: 2px;
}

.about-text h3 {
  margin-top: 20px;
  color: #2e7d32;
  font-size: 20px;
}

.about-text p {
  font-size: 16px;
  color: #444;
}

.about-text ul {
  margin-top: 10px;
  padding-left: 20px;
}

.about-text ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 5px;
}

.about-text ul li::before {
  content: '✓';
  color: #0d6012;
  font-weight: bold;
  position: absolute;
  left: -20px;
}

/* Som File info */
.som-file-info {
  text-align: center;
  margin: 20px auto 30px;
  padding: 15px;
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
  border-radius: 10px;
  border: 2px solid #ff9800;
  max-width: 800px;
}

.som-file-info h3 {
  color: #ff9800;
  margin: 0 0 10px 0;
  font-size: 20px;
}

.som-file-info p {
  margin: 0;
  color: #e65100;
  font-weight: 600;
}

.som-file-info strong {
  font-size: 20px;
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    margin: 90px 20px 40px;
  }
  
  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .som-file-info {
    margin: 20px 15px 25px;
    padding: 12px;
  }
}

/* MAIN */
main {
  padding: 0 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-title {
  text-align: center;
  margin: 40px 0 20px;
  color: #0d6012;
  font-size: 36px;
  position: relative;
  padding-bottom: 15px;
}

.menu-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0d6012, #4caf50);
  border-radius: 2px;
}

/* GRID MENU */
.fish-menu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.fish-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(13, 96, 18, 0.15);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.fish-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(13, 96, 18, 0.25);
  border-color: #0d6012;
}

.fish-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0d6012, #4caf50);
}

/* Rasm containeri */
.fish-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.fish-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.file-img {
  opacity: 0;
}

.fish-card.file-selected .default-img {
  opacity: 0;
}

.fish-card.file-selected .file-img {
  opacity: 1;
}

/* File rasmi uchun maxsus style */
.fish-card[data-fish="som"] .file-img {
  background-color: #f5f5f5;
  border: 2px solid #ff9800;
}

.fish-card h3 {
  margin: 15px 0;
  color: #0d6012;
  font-size: 22px;
  font-weight: 600;
}

.fish-card label {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  color: #444;
  font-weight: 500;
  text-align: left;
}

.fish-card select {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 2px solid #ddd;
  background: white;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.fish-card select:hover {
  border-color: #0d6012;
}

.fish-card select:focus {
  outline: none;
  border-color: #0d6012;
  box-shadow: 0 0 0 3px rgba(13, 96, 18, 0.1);
}

/* File variant tanlanganida maxsus style */
.fish-card.file-selected {
  border: 2px solid #ff9800;
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
}

.fish-card.file-selected .fish-image-container {
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.fish-card[data-fish="som"] select[value="file"],
.fish-card.file-selected select {
  border-color: #ff9800;
  background-color: #fff8e1;
}

.price {
  margin-top: 20px;
  font-weight: bold;
  color: #222;
  font-size: 18px;
  padding: 12px;
  background: #f1f8e9;
  border-radius: 8px;
  border: 2px solid #c8e6c9;
  transition: all 0.3s ease;
}

.price span {
  font-size: 22px;
  color: #0d6012;
  font-weight: 700;
  transition: color 0.3s ease;
}

/* File badge */
.file-badge {
  margin-top: 10px;
  animation: fadeIn 0.5s ease;
}

.file-tag {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ff9800, #ffb74d);
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
}

/* Animatsiya */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FOOTER */
.site-footer {
  background: linear-gradient(135deg, #0d6012 0%, #2e7d32 100%);
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
  border-top: 5px solid #ff9800;
}

.site-footer h2 {
  margin: 0 0 15px 0;
  font-size: 32px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.site-footer .telegram-link {
  display: inline-block;
  margin-top: 15px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid white;
  padding: 12px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
  background: transparent;
  font-size: 16px;
}

.site-footer .telegram-link:hover {
  background: white;
  color: #0d6012;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .fish-menu {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .menu-title {
    font-size: 28px;
  }
  
  .site-footer h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .fish-menu {
    grid-template-columns: 1fr;
  }
  
  .about {
    padding: 15px;
    margin: 90px 10px 30px;
  }
  
  .site-header {
    padding: 0 15px;
  }
  
  .brand-text {
    font-size: 20px;
  }
  
  .fish-card {
    padding: 15px;
  }
  
  .fish-image-container {
    height: 180px;
  }
}