/* responsive.css */
@media(max-width:720px){
  .gs-header-main{ flex-direction:column; align-items:flex-start; gap:8px; }
  .products-grid{ grid-template-columns: 1fr; }
  .gs-logo img{ height:100px; }
}

/* responsive.css — Mobile / small screen app-like UX */

@media (max-width: 991px) {
  /* overall adjustments */
  html, body { -webkit-text-size-adjust: 100%; }
  body { font-size: 16px; line-height:1.4; }

  /* Hero becomes full-screen app style */
  .hero-landing, .landing-hero {
    height: calc(100vh - 56px); /* leave room for bottom nav */
    padding: 18px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content, .landing-hero .hero-content {
    width: 100%;
    max-width: 980px;
    box-sizing: border-box;
    padding: 0 10px;
  }
  .hero-logo {
    width: 110px !important;
    display:block;
    margin: 0 auto 8px auto;
  }
  .main-title {
    font-size: 2.2rem !important;
    line-height: 1.05;
    margin-bottom: 6px;
  }
  .tagline { font-size: 1rem; }

  /* Category & product spacing larger */
  .cat-grid, .products-grid, .product-grid {
    padding: 0 12px;
    gap: 14px;
  }

  /* Product card touch */
  .product-item, .cat-card {
    padding: 12px;
    border-radius: 12px;
  }
  .product-image img { height: 190px; }

  /* Quantity controls larger and finger-friendly */
  .quantity-controls { gap: 8px; }
  .quantity-btn, .cart-qty-btn {
    min-width: 42px;
    min-height: 42px;
    font-size: 20px;
    border-radius: 8px;
  }
  .quantity-input, .cart-qty-input {
    width: 64px;
    height: 42px;
    font-size: 16px;
    border-radius: 8px;
    text-align:center;
  }

  /* Add to cart button: full width, big tap target */
  .add-to-cart, .proceed-to-pay, .cta-btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }

  /* Sticky bottom nav */
  .gs-bottom-nav {
    position: fixed;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 980px;
    background: linear-gradient(180deg, #fff, #fffef9);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 99999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 6px;
    gap: 6px;
  }
  .gs-bottom-nav a {
    flex: 1 1 auto;
    text-align: center;
    font-weight: 700;
    color: #004b6f;
    text-decoration: none;
    font-size: 12px;
    padding: 6px 2px;
  }
  .gs-bottom-nav a .icon {
    display:block;
    font-size: 20px;
    margin-bottom:4px;
  }

  /* Floating cart button with badge */
  .gs-floating-cart {
    position: fixed;
    right: 14px;
    bottom: 74px;
    z-index: 100000;
    display:flex;
    align-items:center;
    gap:8px;
    background: linear-gradient(180deg,#ffffff,#fffaf0);
    padding:8px 10px;
    border-radius:40px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.12);
  }
  .gs-floating-cart .badge {
    background:#b38b00;
    color:#fff;
    font-weight:800;
    font-size:12px;
    padding:4px 8px;
    border-radius:20px;
    margin-left:6px;
  }

  /* Off-canvas menu (hidden by default on desktop) */
  .gs-offcanvas {
    position: fixed;
    left: -320px;
    top: 0;
    bottom: 0;
    width: 320px;
    max-width: 86%;
    background: #fff;
    z-index: 100001;
    box-shadow: 4px 0 30px rgba(0,0,0,0.2);
    transition: left .34s cubic-bezier(.2,.9,.2,1);
    padding:18px;
    overflow-y:auto;
  }
  .gs-offcanvas.open { left: 0; }
  .gs-offcanvas .close-btn { display:block; margin-bottom:12px; font-weight:700; }

  /* Make sure hero Lottie scaling is safe */
  #bubbles svg, #fish-swim svg { width: 120%; height: 120%; transform-origin:center; }

  /* ensure footer spacing */
  footer.gs-footer { padding-bottom: 80px; }

  /* hide desktop-only elements */
  .gs-header-main .gs-menu { display:none; }
}

/* Small tweaks for very small screens */
@media (max-width:420px) {
  .main-title { font-size:1.9rem !important; }
  .hero-logo { width: 100px !important; }
  .gs-floating-cart { right:10px; bottom:86px; padding:6px 8px; }
  .gs-bottom-nav { bottom:6px; width: calc(100% - 18px); }
}

.mobile-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fffaf3;
  border-top: 1px solid #ccc;
  padding: 8px 0;
  z-index: 99999;
}

.mobile-nav .nav-item {
  text-align: center;
  flex: 1;
}

.mobile-cart-count {
  position: absolute;
  bottom: 35px;
  right: 30%;
  background: #ff3b3b;
  color: white;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 6px;
  min-width: 18px;
  text-align: center;
}
/* Mobile bottom nav (glass effect, app look) */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 0;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,0.25);
  z-index: 99999;
}
.mobile-bottom-nav .nav-item {
  text-align: center;
  flex: 1;
  color: #0d3b66;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
}
.mobile-bottom-nav .nav-item span {
  display: block;
  font-size: 0.7rem;
  margin-top: 1px;
}
.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:active {
  color: #0077b6;
  transform: scale(1.15);
}
@media (min-width:768px){
  .mobile-bottom-nav {display:none;}
}
:root {
  --glow-color: #111;           /* Deep black glow */
  --glow-soft: rgba(255, 255, 255, 0.15);
  --base-bg: #fffaf3;           /* Beige background */
  --text-light: #f9f9f9;
  --text-dark: #1a1a1a;
}

/* CATEGORY NAVIGATION */


/* === FOOTER FIXES FOR MOBILE === */
.gs-footer {
  background: #111;
  color: #eee;
  text-align: center;
  padding: 25px 10px 90px;
  font-size: 0.9em;
}

.gs-footer a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gs-footer a:hover {
  color: #fff;
}

/* FOOTER ICONS - LOTTIE AREA */
.footer-content a lottie-player {
  width: 64px !important;
  height: 64px !important;
  transition: transform 0.3s ease;
}

.footer-content a:hover lottie-player {
  transform: scale(1.1);
}

/* FIX: FOOTER ON MOBILE */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
  .gs-footer {
    padding: 18px 10px 100px;
    font-size: 0.85em;
  }
  .footer-links a {
    display: block;
    margin: 4px 0;
  }
  .footer-content.container {
    flex-direction: column;
    gap: 10px;
  }
}

/* FIX: LOTTIE CART SIZE IN MOBILE */
.gs-floating-cart {
  position: fixed;
  right: 16px;
  bottom: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.gs-floating-cart #lottie-cart {
  width: 38px !important;
  height: 38px !important;
}

#gs-cart-badge {
  position: absolute;
  top: 6px;
  right: 8px;
  background: #ff3333;
  color: #fff;
  font-weight: bold;
  font-size: 0.8em;
  border-radius: 50%;
  padding: 2px 7px;
}

/* === Footer === */
.gs-footer {
  background: #111;
  color: #ddd;
  text-align: center;
  padding: 24px 10px 100px;
  font-size: 0.9em;
}
.gs-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.gs-footer a:hover { color: #fff; }
.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.footer-icons lottie-player {
  transition: transform 0.3s ease;
}
.footer-icons a:hover lottie-player { transform: scale(1.1); }

/* === Mobile Bottom Nav === */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1b1b1b;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 0;
  z-index: 99999;
}
.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #aaa;
  font-size: 0.85em;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-bottom-nav .nav-item span {
  font-size: 0.75em;
  margin-top: 2px;
}
.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
  color: #fff;
  transform: translateY(-2px);
}
#mobile-cart-count {
  background: #ff3333;
  color: #fff;
  font-weight: bold;
  font-size: 0.75em;
  padding: 1px 6px;
  border-radius: 50%;
  margin-left: 2px;
}

/* Floating cart desktop fix */
.gs-floating-cart {
  position: fixed;
  right: 18px;
  bottom: 84px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.gs-floating-cart .badge {
  position: absolute;
  top: 8px;
  right: 10px;
  background: #ff3333;
  color: #fff;
  font-size: 0.8em;
  padding: 2px 7px;
  border-radius: 50%;
}
/* Footer — match your beige UI */
.gs-footer {
  background: #fffaf3; /* your theme beige */
  color: #333;
  text-align: center;
  padding: 24px 10px 90px;
  font-size: 0.9em;
  border-top: 2px solid #e4d4b5;
}
.gs-footer a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.gs-footer a:hover { color: #000; }

/* Footer icons */
.footer-content lottie-player {
  transition: transform 0.3s ease;
}
.footer-content a:hover lottie-player {
  transform: scale(1.1);
}

/* ✅ Mobile bottom nav — hidden on desktop */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fffaf3;
  border-top: 1px solid #d8caaa;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  z-index: 9999;
  box-shadow: 0 -3px 8px rgba(0,0,0,0.08);
}
.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  font-size: 0.85em;
  text-decoration: none;
  transition: all 0.25s ease;
}
.mobile-bottom-nav .nav-item span {
  font-size: 0.75em;
  margin-top: 2px;
}
.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
  color: #000;
  transform: translateY(-2px);
  font-weight: 600;
}
#mobile-cart-count {
  background: #ff5a5a;
  color: #fff;
  font-weight: 700;
  font-size: 0.75em;
  padding: 1px 6px;
  border-radius: 50%;
  margin-left: 2px;
}

/* hide mobile nav on desktop */
@media (min-width: 769px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}

.gs-floating-cart {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, opacity 0.4s ease;
  cursor: pointer;
}

.gs-floating-cart:hover {
  transform: scale(1.05);
}

.gs-floating-cart .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff4757;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 22px;
  text-align: center;
  line-height: 1.3;
}
.gs-logo img,
.hero-landing .gs-logo img {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.hero-content img,
.hero-logo img {
  background: transparent !important;
}

/* === SEA FOOD KINGS | Desktop Menu Gloss Hover (Enhanced Visibility) === */
@media (min-width: 769px) {
  .gs-header .gs-menu li a {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 6px 14px;
    transition: color 0.3s ease;
  }

  .gs-header .gs-menu li a::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -90px;
    width: 60px;
    height: 180px;
    background: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 45%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0.5) 55%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
  }

  .gs-header .gs-menu li a:hover::after {
    left: 120%;
    opacity: 1;
  }

  .gs-header .gs-menu li a:hover {
    color: inherit !important;
  }
}
.checkout-bill-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}
.checkout-bill-table th, .checkout-bill-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.checkout-bill-table th {
  font-weight: 600;
  color: #f9d56e;
  border-bottom: 2px solid rgba(255,255,255,0.15);
}

.bill-summary {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.bill-summary div {
  display: flex;
  justify-content: space-between;
  margin: 4px 0;
}
.bill-summary hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 8px 0;
}
.bill-summary .grand-total {
  font-size: 1.05rem;
  color: #ffd36e;
}
.checkout-bill-table {
  animation: fadeInUp 0.6s ease both;
}

.bill-summary {
  animation: fadeIn 0.6s ease 0.3s both;
}

.bill-summary .grand-total {
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGlow {
  from { text-shadow: 0 0 4px #ffd36e, 0 0 8px #ffefb0; }
  to { text-shadow: 0 0 12px #ffe08a, 0 0 20px #fff2c2; }
}


