/* ===================================
   Midway Fish Market - Goldfish Site
   Vintage Carnival Theme
   =================================== */

:root {
  --red:        #c0392b;
  --red-dark:   #922b21;
  --gold:       #d4a017;
  --gold-light: #f0c84e;
  --cream:      #fdf6e3;
  --cream-dark: #f5e9c8;
  --brown:      #6b3a2a;
  --brown-light:#9c5c3c;
  --teal:       #1a7f7a;
  --teal-light: #25b0a8;
  --water-blue: #2c7da0;
  --water-light:#90e0ef;
  --dark:       #1a0a00;
  --text:       #3d1f0a;
  --text-light: #6b4226;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.25);
  --radius:     10px;
  --radius-lg:  18px;
  --font-display: 'Rye', serif;
  --font-body:    'Lato', sans-serif;
  --font-serif:   'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ---- TICKER TAPE ---- */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid var(--red-dark);
}
.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 20px;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  background-image: 
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
  border-bottom: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 0;
}
.logo-top, .logo-bottom {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.logo-fish {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

/* Ticker fish image */
.ticker-fish {
  height: 18px;
  width: auto;
  vertical-align: middle;
  margin-right: 4px;
  display: inline-block;
}
.main-nav {
  display: flex;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(212,160,23,0.12);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  background: var(--dark);
  border-top: 1px solid var(--gold);
  padding: 12px 24px 20px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #0a2240 0%, #0d3b6e 40%, #1a5f7a 70%, #0e3d52 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Bubbles */
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.bubble {
  position: absolute;
  bottom: -40px;
  left: var(--left);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(144, 224, 239, 0.25);
  border: 1px solid rgba(144, 224, 239, 0.4);
  animation: bubbleRise 8s ease-in infinite;
  animation-delay: var(--delay);
}
@keyframes bubbleRise {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  80% { opacity: 0.4; }
  100% { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 32px 40px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.title-line-1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--gold-light);
  line-height: 1.1;
}
.title-line-2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--white);
  line-height: 0.95;
  text-shadow: 4px 4px 0 var(--water-blue), 0 0 40px rgba(144,224,239,0.3);
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

/* Fishbowl animation */
.fishbowl-container { perspective: 600px; }
.fishbowl {
  width: 200px;
  height: 200px;
  border-radius: 50% 50% 40% 40%;
  background: linear-gradient(180deg, rgba(0,120,180,0.3) 0%, rgba(0,80,140,0.6) 100%);
  border: 3px solid rgba(144,224,239,0.5);
  box-shadow: 0 0 40px rgba(144,224,239,0.3), inset 0 0 30px rgba(0,100,200,0.3);
  position: relative;
  overflow: hidden;
  animation: bowlFloat 4s ease-in-out infinite;
}
@keyframes bowlFloat {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
.water-surface {
  position: absolute;
  top: 15px;
  left: 0; right: 0;
  height: 8px;
  background: rgba(144,224,239,0.4);
  border-radius: 50%;
  animation: waterWave 2s ease-in-out infinite;
}
@keyframes waterWave {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.04); }
}
.water {
  position: absolute;
  inset: 20px 0 0;
  background: linear-gradient(180deg, rgba(32,178,210,0.15), rgba(10,80,140,0.25));
}
.fish {
  position: absolute;
  animation: swim 3s ease-in-out infinite;
}
.fish img {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.fish-1 { top: 40%; left: 20%; animation-delay: 0s; }
.fish-1 img { width: 60px; height: auto; }
.fish-2 { top: 55%; left: 55%; animation-delay: 1s; }
.fish-2 img { width: 44px; height: auto; }
.fish-3 { top: 28%; left: 50%; animation-delay: 1.8s; }
.fish-3 img { width: 32px; height: auto; }
@keyframes swim {
  0%, 100% { transform: translateX(0) scaleX(1); }
  25% { transform: translateX(18px) scaleX(1); }
  50% { transform: translateX(18px) scaleX(-1); }
  75% { transform: translateX(0) scaleX(-1); }
}
.bowl-pebbles {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
}
.pebbles-img {
  width: 100%;
  height: auto;
  max-height: 28px;
  object-fit: contain;
}

/* Hero banner bottom */
.hero-banner-bottom {
  position: relative;
  z-index: 2;
  padding: 0 0 0;
}
.pennant-row {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 20px 0 0;
}
.pennant {
  width: 40px;
  height: 50px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  flex-shrink: 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(212,160,23,0.4);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-secondary:hover {
  background: rgba(212,160,23,0.12);
  transform: translateY(-2px);
}

/* ---- QUICK TIPS STRIP ---- */
.quick-tips-strip {
  display: flex;
  background: var(--brown);
  flex-wrap: wrap;
}
.tip-card {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.tip-card:hover { background: rgba(255,255,255,0.05); }
.tip-card:last-child { border-right: none; }
.tip-icon { font-size: 2rem; flex-shrink: 0; }
.tip-text { color: var(--cream); font-size: 0.88rem; line-height: 1.5; }
.tip-text strong { color: var(--gold-light); display: block; margin-bottom: 2px; }

/* ---- SECTION COMMONS ---- */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  background: var(--cream-dark);
  border: 1px solid var(--gold);
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- CARE GUIDE ---- */
.care-section {
  padding: 80px 24px;
  background: var(--cream);
  position: relative;
}
.care-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 40px, var(--gold) 40px, var(--gold) 80px, var(--teal) 80px, var(--teal) 120px, var(--dark) 120px, var(--dark) 160px);
}

.care-tabs-container { max-width: 960px; margin: 0 auto; }
.care-tabs {
  display: flex;
  gap: 4px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 6px;
  margin-bottom: 28px;
  border: 2px solid var(--gold);
  flex-wrap: wrap;
}
.tab-btn {
  flex: 1 1 120px;
  padding: 10px 16px;
  background: none;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover { background: rgba(0,0,0,0.06); color: var(--text); }
.tab-btn.active {
  background: var(--dark);
  color: var(--gold-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.tab-content { animation: fadeIn 0.3s ease; }
.tab-content.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.care-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
}
.care-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--gold);
}
.care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.care-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  transition: all 0.2s;
}
.care-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(212,160,23,0.15);
}
.care-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.care-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.care-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.care-item strong { color: var(--brown); }

/* ---- PRODUCTS ---- */
.products-section {
  padding: 80px 24px;
  background: var(--dark);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212,160,23,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,127,122,0.08) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0, rgba(255,255,255,0.01) 1px, transparent 1px, transparent 20px);
}
.products-section .section-tag { background: rgba(255,255,255,0.08); color: var(--gold-light); border-color: var(--gold); }
.products-section .section-title { color: var(--cream); }
.products-section .section-subtitle { color: rgba(255,255,255,0.6); }

.products-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 99px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(212,160,23,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.product-card.filtered-out { display: none; }

.product-icon { font-size: 2.4rem; line-height: 1; }
.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 99px;
  width: fit-content;
}
.tag-tank { background: rgba(26,127,122,0.25); color: var(--teal-light); }
.tag-food { background: rgba(212,160,23,0.2); color: var(--gold-light); }
.tag-water { background: rgba(44,125,160,0.25); color: #90e0ef; }
.tag-accessories { background: rgba(192,57,43,0.2); color: #ff8a80; }

.product-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.3;
}
.product-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.product-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-light);
}
.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ff9900;
  color: #111;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-amazon:hover {
  background: #ffad33;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,153,0,0.4);
}

/* ---- FAQ ---- */
.faq-section {
  padding: 80px 24px;
  background: var(--cream-dark);
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--teal) 0, var(--teal) 40px, var(--gold) 40px, var(--gold) 80px, var(--red) 80px, var(--red) 120px, var(--dark) 120px, var(--dark) 160px);
}
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(107,58,42,0.15);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--cream); }
.faq-question[aria-expanded="true"] { background: var(--cream); color: var(--red-dark); }
.faq-chevron {
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.open { max-height: 400px; padding-bottom: 4px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  border-top: 1px dashed rgba(107,58,42,0.2);
  padding-top: 16px;
  margin-top: 0;
}

/* ---- CONTACT ---- */
.contact-section {
  padding: 80px 24px;
  background: var(--brown);
  background-image: 
    radial-gradient(circle at 0% 100%, rgba(192,57,43,0.3), transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(212,160,23,0.15), transparent 50%);
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-text .section-tag { background: rgba(255,255,255,0.1); color: var(--gold-light); border-color: var(--gold); }
.contact-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cream);
  margin: 12px 0 16px;
}
.contact-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 1rem;
}
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-icon { font-size: 1.3rem; }
.contact-item a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--white); }

.contact-form-wrap {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 36px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.form-group select option { background: var(--brown); }
.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-status.success { background: rgba(26,127,122,0.25); color: #7ff5ef; border: 1px solid rgba(26,127,122,0.4); display: block; }
.form-status.error { background: rgba(192,57,43,0.25); color: #ffb3b3; border: 1px solid rgba(192,57,43,0.4); display: block; }

/* ---- FOOTER ---- */
.site-footer-bar {
  background: #0d0700;
  border-top: 4px solid var(--gold);
  padding: 36px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-brand span { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ---- IMAGE ICON SIZING ---- */

/* Ticker fish */
.ticker-fish {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 4px;
}

/* Header logo fish */
img.logo-fish {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Fishbowl fish images */
.fish img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fish-1 { width: 52px; height: 52px; }
.fish-2 { width: 38px; height: 38px; }
.fish-3 { width: 30px; height: 30px; }

/* Bowl pebbles image */
.pebbles-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Quick tips strip icons */
.tip-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* Care guide tab button icons */
.tab-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 4px;
}

/* Product card icons */
.product-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* ---- LOADING SPINNER ---- */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--gold-light);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .care-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .hero-content { padding: 60px 20px 30px; }
  .fishbowl { width: 150px; height: 150px; }
  .care-card { padding: 20px; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .care-tabs { gap: 2px; padding: 4px; }
  .tab-btn { font-size: 0.74rem; padding: 8px 10px; }
  .products-grid { grid-template-columns: 1fr; }
  .pennant { width: 28px; height: 36px; }
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
