

/* ============================================================
   style.css — YNR Aquatics | Professional Corporate Theme
   Colors: White · Sky/Ocean Blue · Green (secondary bg)
   ============================================================ */
 
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Merriweather:wght@700;900&display=swap');
 
/* ── Variables ── */
:root {
  --blue-dark:    #0c4a6e;
  --blue:         #0369a1;
  --blue-mid:     #0284c7;
  --blue-light:   #38bdf8;
  --blue-pale:    #e0f2fe;
  --blue-ghost:   #f0f9ff;
 
  --green-dark:   #14532d;
  --green:        #16a34a;
  --green-light:  #bbf7d0;
  --green-bg:     #f0fdf4;
 
  --white:        #ffffff;
  --off-white:    #f8fafc;
  --border:       #e2e8f0;
  --border-dark:  #cbd5e1;
 
  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;
 
  --whatsapp:     #25D366;
  --wa-dark:      #128C7E;
  --sold:         #dc2626;
 
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:     0 4px 16px rgba(3,105,161,0.10), 0 1px 4px rgba(0,0,0,0.05);
  --shadow-lg:  0 12px 40px rgba(3,105,161,0.14), 0 4px 12px rgba(0,0,0,0.06);
 
  --font-head:  'Merriweather', Georgia, serif;
  --font-body:  'Outfit', system-ui, sans-serif;
  --transition: all 0.22s ease;
}
 
/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }
 
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 3px; }
 
 
/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img {
  height: 44px; width: 44px; object-fit: cover;
  border-radius: 50%; border: 2px solid var(--blue-pale);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-head); font-size: 1rem; font-weight: 900;
  color: var(--blue-dark);
}
.nav-logo-tag {
  font-size: 0.65rem; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.07em; text-transform: uppercase;
}
 
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  padding: 0.4rem 0.8rem; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--blue); background: var(--blue-ghost); }
.nav-wa-btn {
  display: inline-flex !important; align-items: center; gap: 5px;
  background: var(--whatsapp) !important; color: #fff !important;
  padding: 0.45rem 1rem !important; border-radius: var(--radius-sm) !important;
  font-weight: 600 !important; margin-left: 0.5rem;
}
.nav-wa-btn:hover { background: var(--wa-dark) !important; }
 
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; border-radius: var(--radius-sm);
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
 
/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#home {
  padding-top: 68px;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-mid) 100%);
  position: relative; overflow: hidden;
}
#home::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 70px;
  background: var(--white); clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 4.5rem 2rem 5.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #bae6fd; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 13px; border-radius: 50px; margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-head); font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 900; color: #fff; line-height: 1.18; margin-bottom: 1rem;
}
.hero-title span { color: #7dd3fc; }
.hero-desc {
  font-size: 0.975rem; color: rgba(255,255,255,0.72);
  font-weight: 300; margin-bottom: 2rem; max-width: 430px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
 
.btn-white {
  background: var(--white); color: var(--blue-dark); font-weight: 700;
  font-size: 0.875rem; padding: 0.7rem 1.6rem; border-radius: var(--radius-sm);
  border: none; transition: var(--transition); box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover { background: var(--blue-pale); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent; color: #fff; font-weight: 600; font-size: 0.875rem;
  padding: 0.68rem 1.6rem; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.4); transition: var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
 
.hero-right { display: flex; justify-content: center; }
.hero-logo-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  backdrop-filter: blur(8px);
}
.hero-logo-card img {
  width: 200px; height: 200px; object-fit: cover; border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.18); margin: 0 auto 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.hero-logo-name {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 900;
  color: #fff; margin-bottom: 0.3rem;
}
.hero-logo-phones { font-size: 0.78rem; color: #bae6fd; font-weight: 500; line-height: 1.7; }
 
.hero-stats {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem 3.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border-radius: var(--radius); overflow: hidden; position: relative; z-index: 1;
}
.hero-stat { background: rgba(255,255,255,0.05); padding: 1.25rem; text-align: center; }
.hero-stat-num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 900; color: #fff; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
 
 
/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.section-head { margin-bottom: 2.5rem; }
.section-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-pale);
  padding: 4px 11px; border-radius: 50px; margin-bottom: 0.7rem;
}
.section-tag.green { color: var(--green); background: var(--green-light); }
.section-title {
  font-family: var(--font-head); font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 900; color: var(--text-primary); line-height: 1.22; margin-bottom: 0.6rem;
}
.section-desc { font-size: 0.95rem; color: var(--text-secondary); max-width: 510px; }
.section-divider { width: 36px; height: 3px; background: var(--blue); border-radius: 2px; margin-top: 0.9rem; }
.section-divider.green { background: var(--green); }
 
 
/* ══════════════════════════════════════════
   FEATURED (light blue bg)
══════════════════════════════════════════ */
#featured { background: var(--blue-ghost); border-top: 1px solid var(--blue-pale); border-bottom: 1px solid var(--blue-pale); }
 
 
/* ══════════════════════════════════════════
   CATALOG
══════════════════════════════════════════ */
#catalog { background: var(--off-white); }
 
.catalog-controls {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  align-items: center; margin-bottom: 2rem;
}
.search-wrap { flex: 1; min-width: 200px; position: relative; }
.search-wrap input {
  width: 100%; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.6rem 1rem 0.6rem 2.6rem;
  font-family: var(--font-body); font-size: 0.875rem;
  color: var(--text-primary); outline: none; transition: var(--transition);
}
.search-wrap input::placeholder { color: var(--text-muted); }
.search-wrap input:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px var(--blue-pale); }
.search-icon { position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%); font-size: 0.85rem; color: var(--text-muted); pointer-events: none; }
.filter-pills { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.pill {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.48rem 0.95rem;
  font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
  transition: var(--transition); cursor: pointer; font-family: var(--font-body);
}
.pill:hover { border-color: var(--blue-mid); color: var(--blue); }
.pill.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
 
/* Fish Grid */
.fish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.4rem;
}
.fish-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.fish-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.fish-card.sold-out { opacity: 0.75; }
 
.card-img-wrap { position: relative; height: 220px; overflow: hidden; background: var(--blue-ghost); }
.card-img-wrap img { width: 100%; height: 100%; object-fit: contain; background: var(--blue-ghost); transition: transform 0.4s ease; }.card-img-wrap img { width: 100%; height: 100%; object-fit: contain; background: #f0f9ff; transition: transform 0.4s ease; }
.fish-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: var(--text-muted); }
 
.tag-new {
  position: absolute; top: 10px; left: 10px;
  background: var(--green); color: #fff;
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.07em;
  padding: 3px 8px; border-radius: 4px; text-transform: uppercase;
}
.tag-sold-overlay {
  position: absolute; inset: 0; background: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
}
.tag-sold-text {
  background: var(--sold); color: #fff;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem; border-radius: 4px;
  transform: rotate(-5deg); text-transform: uppercase;
}
 
.card-body { padding: 1.1rem 1.15rem 1.15rem; }
.card-category { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: var(--blue); text-transform: uppercase; margin-bottom: 0.3rem; }
.card-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.3rem; }
.card-desc { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 0.9rem; line-height: 1.55; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding-top: 0.8rem; border-top: 1px solid var(--border);
}
.card-price { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--blue-dark); }
.card-price small { font-size: 0.7rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
 
.btn-wa {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--whatsapp); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: 0.48rem 0.85rem;
  font-size: 0.78rem; font-weight: 600; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-wa:hover { background: var(--wa-dark); }
.btn-wa svg { width: 13px; height: 13px; fill: #fff; flex-shrink: 0; }
.btn-wa-disabled { background: var(--border) !important; color: var(--text-muted) !important; cursor: not-allowed; pointer-events: none; }
 
.no-fish { grid-column: 1/-1; text-align: center; padding: 4rem 1rem; color: var(--text-muted); }
.no-fish-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.no-fish p { font-size: 1rem; }
 
.skeleton {
  background: linear-gradient(90deg, var(--border) 25%, #f1f5f9 50%, var(--border) 75%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite;
  border-radius: var(--radius); height: 310px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
 
 
/* ══════════════════════════════════════════
   SERVICES — green bg
══════════════════════════════════════════ */
#services {
  background: var(--green-bg);
  border-top: 1px solid #d1fae5; border-bottom: 1px solid #d1fae5;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 1.2rem; }
.service-card {
  background: var(--white); border: 1.5px solid #d1fae5;
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.service-card:hover { border-color: var(--green); box-shadow: 0 8px 28px rgba(22,163,74,0.1); transform: translateY(-3px); }
.service-icon-wrap {
  width: 46px; height: 46px; background: var(--green-light);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.35rem; margin-bottom: 0.9rem;
}
.service-title { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); margin-bottom: 0.4rem; }
.service-desc { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; }
 
 
/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.1rem; background: var(--off-white);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--blue-light); background: var(--blue-ghost); }
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-item-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-item-value { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
 
.btn-wa-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--whatsapp); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: 0.85rem;
  font-size: 0.9rem; font-weight: 700; transition: var(--transition);
  text-decoration: none; margin-top: 0.4rem;
  box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.btn-wa-cta:hover { background: var(--wa-dark); }
 
.map-wrap {
  border-radius: var(--radius); border: 1.5px solid var(--border);
  overflow: hidden; height: 370px; box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }
 
 
/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--blue-dark);
  padding: 2.25rem 2rem; text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 9px; margin-bottom: 0.65rem; }
.footer-logo img { width: 36px; height: 36px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(255,255,255,0.18); }
.footer-logo-name { font-family: var(--font-head); font-size: 1rem; font-weight: 900; color: #fff; }
.footer-text { font-size: 0.8rem; color: rgba(255,255,255,0.42); }
.footer-text a { color: #7dd3fc; }
 
 
/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
 
 
/* ══════════════════════════════════════════
   ADMIN
══════════════════════════════════════════ */
.admin-body { background: var(--off-white); color: var(--text-primary); min-height: 100vh; }
.admin-wrapper { max-width: 940px; margin: 0 auto; padding: 2rem; }
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1.5px solid var(--border);
}
.admin-logo-row { display: flex; align-items: center; gap: 10px; }
.admin-logo-row img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--blue-pale); }
.admin-title { font-family: var(--font-head); font-size: 1.35rem; font-weight: 900; color: var(--blue-dark); }
.admin-subtitle { font-size: 0.78rem; color: var(--text-muted); margin-top: 1px; }
.admin-header-actions { display: flex; gap: 0.6rem; }
 
.admin-section {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.65rem; margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.admin-section-title {
  font-weight: 700; font-size: 0.95rem; color: var(--text-primary);
  margin-bottom: 1.2rem; padding-bottom: 0.7rem; border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); }
.form-input, .form-select, .form-textarea {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.6rem 0.85rem;
  font-family: var(--font-body); font-size: 0.875rem;
  color: var(--text-primary); outline: none; transition: var(--transition); width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-mid); box-shadow: 0 0 0 3px var(--blue-pale);
}
.form-textarea { resize: vertical; min-height: 82px; }
 
.upload-area {
  border: 2px dashed var(--border-dark); border-radius: var(--radius);
  padding: 1.75rem; text-align: center; cursor: pointer;
  transition: var(--transition); position: relative; background: var(--off-white);
}
.upload-area:hover, .upload-area.drag-over { border-color: var(--blue-mid); background: var(--blue-ghost); }
.upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-icon { font-size: 1.9rem; margin-bottom: 0.35rem; color: var(--text-muted); }
.upload-text { font-size: 0.8rem; color: var(--text-muted); }
.upload-preview { max-height: 150px; border-radius: 8px; margin: 0.9rem auto 0; object-fit: cover; }
 
.progress-wrap { display: none; margin-top: 0.7rem; background: var(--border); border-radius: 50px; overflow: hidden; height: 5px; }
.progress-bar { height: 100%; width: 0; background: var(--blue-mid); transition: width 0.3s; }
 
.btn-submit {
  background: var(--blue); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: 0.72rem 2rem;
  font-size: 0.875rem; font-weight: 700; transition: var(--transition);
  width: 100%; margin-top: 0.5rem; font-family: var(--font-body);
}
.btn-submit:hover { background: var(--blue-dark); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
 
.btn-icon {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.38rem 0.75rem;
  font-size: 0.76rem; font-weight: 600; color: var(--text-secondary);
  transition: var(--transition); font-family: var(--font-body);
}
.btn-icon:hover { border-color: var(--blue-light); color: var(--blue); background: var(--blue-ghost); }
.btn-icon.danger:hover { border-color: #fca5a5; color: var(--sold); background: #fef2f2; }
 
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 0.85rem 1.2rem;
  display: flex; align-items: center; gap: 0.7rem;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%); transition: transform 0.35s ease;
  max-width: 310px;
}
.toast.show { transform: translateX(0); }
.toast.success { border-color: var(--green); }
.toast.error { border-color: var(--sold); }
.toast-msg { font-size: 0.865rem; font-weight: 500; color: var(--text-primary); }
 
.fish-list { display: flex; flex-direction: column; gap: 0.7rem; }
.fish-row {
  display: flex; align-items: center; gap: 1rem;
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.7rem 1rem; transition: var(--transition);
}
.fish-row:hover { border-color: var(--blue-light); background: var(--blue-ghost); }
.fish-row img { width: 50px; height: 50px; object-fit: cover; border-radius: var(--radius-sm); }
.fish-row-info { flex: 1; }
.fish-row-name { font-weight: 700; font-size: 0.875rem; color: var(--text-primary); }
.fish-row-meta { font-size: 0.73rem; color: var(--text-muted); margin-top: 1px; }
.badge-available { color: var(--green); font-weight: 600; }
.badge-sold { color: var(--sold); font-weight: 600; }
.fish-row-actions { display: flex; gap: 0.4rem; }
 
.login-screen {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--off-white); padding: 2rem;
}
.login-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem; width: 100%; max-width: 370px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.login-logo { width: 68px; height: 68px; object-fit: cover; border-radius: 50%; margin: 0 auto 0.9rem; border: 3px solid var(--blue-pale); }
.login-title { font-family: var(--font-head); font-size: 1.35rem; font-weight: 900; color: var(--text-primary); margin-bottom: 0.3rem; }
.login-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.6rem; }
.login-form { display: flex; flex-direction: column; gap: 0.8rem; text-align: left; }
 
 
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .hero-desc { margin: 0 auto 1.75rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 255px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: var(--white);
    border-bottom: 1px solid var(--border); padding: 0.8rem; gap: 0.2rem;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 0.55rem 0.85rem; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section-inner { padding: 3rem 1.2rem; }
  .fish-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-logo-card img { width: 150px; height: 150px; }
  .admin-wrapper { padding: 1.2rem; }
}
@media (max-width: 360px) {
  .fish-grid { grid-template-columns: 1fr; }
}