/* Fish Gold Brand Styles - Blue and Red Theme */
:root {
  --fish-primary: #1e40af;
  --fish-secondary: #dc2626;
  --fish-light: #eff6ff;
  --fish-dark: #1e3a8a;
  --fish-accent: #3b82f6;
  --fish-red-light: #fef2f2;
}

/* Hero Section */
.fish-hero {
  /* background: linear-gradient(135deg, var(--fish-primary) 0%, var(--fish-dark) 50%, var(--fish-secondary) 100%); */
   /* background: linear-gradient(135deg, var(--fish-light) 0%, var(--fish-primary) 50%, var(--fish-secondary) 100%); */
     background: linear-gradient(135deg, #ff4e50 0%, #fc913a 50%, #ffb347 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  /* height: 100vh;
  display: flex; */
  overflow: hidden;
}

.fish-hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  /* opacity: 0.3; */
  opacity: 0.7;
}

.fish-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fish-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.brand-name {
  display: block;
  font-size: 2rem;
  color: #fbbf24;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.fish-hero-description {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background: #ffffff;
}

.products-header {
  margin-bottom: 3rem;
}

.products-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fish-primary);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.products-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--fish-primary), var(--fish-secondary));
  border-radius: 2px;
}

.products-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--fish-light) 0%, var(--fish-red-light) 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.products-controls::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--fish-primary), var(--fish-secondary));
  border-radius: 12px;
  padding: 2px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.search-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fish-primary);
}

.search-box input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--fish-primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.filter-controls {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-controls select {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  font-size: 1rem;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.filter-controls select:focus {
  outline: none;
  border-color: var(--fish-primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fish-primary), var(--fish-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.15);
  border-color: var(--fish-primary);
}

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

.product-image {
  height: 200px;
  background: var(--fish-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--fish-primary), var(--fish-secondary));
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-info {
  padding: 1.5rem;
}

.product-category {
  color: var(--fish-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-description {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.spec-item {
  background: linear-gradient(135deg, var(--fish-light), var(--fish-red-light));
  color: var(--fish-dark);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(30, 64, 175, 0.2);
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--fish-primary), var(--fish-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-fish {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-fish-primary {
  background: linear-gradient(135deg, var(--fish-primary), var(--fish-secondary));
  color: white;
}

.btn-fish-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

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

.btn-fish-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-fish-secondary {
  background: transparent;
  color: var(--fish-primary);
  border: 2px solid var(--fish-primary);
}

.btn-fish-secondary:hover {
  background: var(--fish-primary);
  color: white;
  transform: translateY(-1px);
}

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: #6b7280;
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--fish-primary), var(--fish-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.no-results h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #374151;
}

/* Animation delays for staggered effect */
.product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.product-card:nth-child(2) {
  animation-delay: 0.2s;
}
.product-card:nth-child(3) {
  animation-delay: 0.3s;
}
.product-card:nth-child(4) {
  animation-delay: 0.4s;
}
.product-card:nth-child(5) {
  animation-delay: 0.5s;
}
.product-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .fish-hero-title {
    font-size: 2.5rem;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .products-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-controls {
    justify-content: stretch;
  }

  .filter-controls select {
    flex: 1;
    min-width: auto;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

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

  .products-title {
    font-size: 2rem;
  }

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

  .product-specs {
    gap: 0.5rem;
  }

  .product-actions {
    flex-direction: column;
  }
}

