/*
Theme Name: GoldenSeafoodTheme_V1_Tester-1
Theme URI: https://seafoodkings.in/
Author: Seafood Kings
Author URI: https://seafoodkings.in/
Description: Pro build — local cart, Razorpay test, fish cursor, water splash, category fade, polished UI.
Version: 1.0.3
License: GNU General Public License v2 or later
Text Domain: goldenseafood
*/

/* BASE (keeps your original UI look; safe defaults, do not remove) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root{
  --gold:#b38b00;
  --gold-strong:#d4af37;
  --beige:#f7f5ef;
  --muted:#777;
  --accent-sea: rgba(0,166,192,0.18);
}

*{box-sizing:border-box}
html,body{height:100%}
body{font-family:'Poppins',sans-serif;color:#222;background:#fff;margin:0;padding:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

/* Header / Ticker / Banner */
.gs-topbar, .gs-header-main, .gs-footer { background: var(--beige); }
.gs-topbar{border-bottom:1px solid rgba(0,0,0,0.04)}
.gs-breaking{padding:8px 0}
.gs-breaking-inner{max-width:1200px;margin:0 auto;padding:0 20px}

/* Ticker list */
.gs-ticker-list{display:flex;gap:48px;list-style:none;margin:0;padding:0;animation:scrollTicker 22s linear infinite;white-space:nowrap}
.gs-ticker-list li{font-weight:700;color:#6b6b6b;text-shadow:0 1px 0 rgba(255,255,255,.6)}
@keyframes scrollTicker{0%{transform:translateX(100%)}100%{transform:translateX(-100%)}}

.gs-ticker {
  background: linear-gradient(180deg, #fefcf9, #f2ebdb);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08), inset 0 2px 3px rgba(255,255,255,0.6);
  border-top: 1px solid #e6e0d2;
  border-bottom: 1px solid #e6e0d2;
}


/* Header main */
.gs-header-main.container{display:flex;align-items:center;justify-content:space-between;padding:18px 5%;gap:20px}
.gs-logo img{height:100px;max-height:100px;width:auto}
.gs-nav .gs-menu{list-style:none;display:flex;gap:22px;margin:0;padding:0}
.gs-nav .gs-menu li{display:inline-block}
.gs-nav .gs-menu a{color:#222;text-decoration:none;font-weight:600;padding:8px 6px;border-radius:8px;transition:all .22s}
.gs-nav .gs-menu a:hover{color:var(--gold-strong)}

/* Cart quick */
.gs-cart-quick a{background:linear-gradient(180deg,#fff,#f7f3ea);padding:10px 16px;border-radius:12px;text-decoration:none;color:#222;font-weight:700;box-shadow:0 6px 18px rgba(0,0,0,0.06)}

/* Shop categories grid */
.shop-grid, .category-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:26px;margin:28px 0;padding:0 20px}
.category-item{background:#fff;border-radius:12px;overflow:hidden;border:1px solid #eee;text-align:center;transition:all .3s;box-shadow:0 6px 18px rgba(0,0,0,0.04)}
.category-item img{height:220px;object-fit:cover;width:100%}
.category-item h3{margin:14px 0;color:var(--gold);font-weight:700}

/* Product grid */
.products-grid, .product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;margin:20px 0;padding:0 20px}
.product-item{background:#fff;border-radius:12px;padding:12px;border:1px solid #eee;box-shadow:0 6px 16px rgba(0,0,0,0.04);position:relative;overflow:hidden;transition:transform .3s}
.product-item:hover{transform:translateY(-6px);border-color:var(--gold)}
.product-image img{width:100%;height:180px;object-fit:cover;border-radius:8px}
.product-name{font-weight:700;margin:10px 0}
.product-price{color:var(--gold);font-weight:700;margin-bottom:8px}

/* Quantity controls */
.quantity-controls{display:flex;justify-content:center;align-items:center;gap:8px;margin-bottom:8px}
.quantity-btn{border:none;background:#f1f1f1;padding:6px 10px;border-radius:8px;cursor:pointer}
.quantity-input{width:56px;text-align:center;border:1px solid #eee;border-radius:6px;padding:6px}

/* Add to cart button */
.add-to-cart{background:linear-gradient(180deg,var(--gold),var(--gold-strong));color:#fff;border:none;padding:8px 14px;border-radius:10px;font-weight:700;cursor:pointer;box-shadow:0 8px 18px rgba(0,0,0,0.08)}
.add-to-cart:hover{transform:translateY(-2px);}

/* Out-of-stock overlay */
.product-item.out-of-stock img{filter:grayscale(80%);opacity:.6}
.stock-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,0.55);background-image:url('assets/images/out-of-stock.png');background-repeat:no-repeat;background-position:center;background-size:60%;pointer-events:none}

/* Buttons splash & embossed */
.gs-splash {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle at 35% 35%, rgba(0,166,192,0.45), rgba(0,166,192,0.08) 40%, transparent 60%);
  animation: splashPulse .65s ease-out forwards;
  pointer-events: none;
}
@keyframes splashPulse {
  0% { transform: translate(-50%, -50%) scale(.2); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.9); opacity: 0; }
}

/* Toast */
.sfk-toast{position:fixed;right:18px;bottom:18px;background:#111;color:#fff;padding:10px 14px;border-radius:8px;z-index:99999;opacity:0;transform:translateY(8px);transition:all .25s;pointer-events:none}
.sfk-toast.show{opacity:1;transform:translateY(0);pointer-events:auto}

/* Footer */
.gs-footer{background:var(--beige);padding:28px 20px;color:#555;border-top:2px solid rgba(212,175,55,0.06)}
.footer-content{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:12px;max-width:1100px;margin:0 auto}
.footer-links a, .footer-social a{color:var(--gold);margin:0 8px;text-decoration:none;font-weight:600}
.footer-bottom{margin-top:12px;color:#777}

/* fish cursor hide native */
body.gs-fish-enabled, html.gs-hide-native-cursor *{cursor:none!important}


/* responsive */
@media(max-width:768px){
  .gs-logo img{height:64px}
  .products-grid{grid-template-columns:1fr}
}
.product-details{
  /* If missing, add this: */
  text-align:center;
  padding:8px;
}
.add-to-cart{
  display:inline-block;
  margin-top:8px;
}
/* Checkout form polish */
#checkout-form {
  font-family: 'Poppins', sans-serif;
  background: var(--beige);
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: 0 6px 14px rgba(0,0,0,0.04);
}
#checkout-form label {
  display: block;
  margin: 8px 0;
  color: #444;
  font-weight: 600;
}
#checkout-form input,
#checkout-form textarea,
#checkout-form select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-top: 4px;
  font-size: 14px;
}
#placeOrderBtn {
  width: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-strong));
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 12px;
  border-radius: 10px;
  margin-top: 10px;
}
.category-nav .cat-link {
  opacity: 0.4;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.category-nav .cat-link:hover { opacity: 1; color: var(--gold); }
.category-nav .cat-link.active { opacity: 1; color: var(--gold-strong); }

.gs-footer, .gs-header-main {
  background: linear-gradient(180deg, #f9f7f0, #f1ece0);
  box-shadow: inset 0 2px 3px rgba(255,255,255,0.8), inset 0 -2px 3px rgba(0,0,0,0.05);
}

/* --- Buttons + Qty UI polish --- */
/* ==== FIXED UI POLISH ==== */
.add-to-cart, .proceed-to-pay, .qty.plus, .qty.minus, .remove {
  background: linear-gradient(180deg,#fff,#f3efea);
  border:1px solid #e3dcc9;
  color:#333;
  border-radius:10px;
  padding:6px 12px;
  font-weight:600;
  box-shadow:inset 0 -4px 0 rgba(0,0,0,0.05),0 4px 8px rgba(0,0,0,0.06);
  transition:all .2s;
}
.add-to-cart:hover, .proceed-to-pay:hover {
  background:#faf6ec; transform:translateY(-1px);
}
.proceed-to-pay { background: linear-gradient(180deg,#fff,#f3efea); }

/* Fish cursor smaller */
.gs-fish-cursor.small{
  width:18px;height:18px;
  background-size:contain;background-repeat:no-repeat;
  position:fixed;left:0;top:0;pointer-events:none;z-index:999999;
  transition:transform .05s linear;
}
body.gs-hide-native-cursor,body.gs-hide-native-cursor *{cursor:none!important}

/* Toast */
.sfk-toast{position:fixed;right:20px;bottom:20px;background:#111;color:#fff;
  padding:10px 14px;border-radius:8px;opacity:0;transform:translateY(8px);
  transition:all .25s;pointer-events:none;z-index:99999}
.sfk-toast.show{opacity:1;transform:translateY(0)}

/* Header cart & lottie alignment */
.gs-cart { display:flex; align-items:center; gap:8px; }
.header-cart-lottie { width:34px; height:34px; display:flex; align-items:center; justify-content:center; }
.gs-cart-link { font-weight:800; color:#222; text-decoration:none; font-size:1rem; }

/* Remove parentheses styling if any older markup had them */
#goldensea-cart-count { display:inline-block; min-width:20px; text-align:center; }

/* Fish cursor style (small) */
.gs-fish-cursor.small { width:18px; height:18px; background-size:contain; background-repeat:no-repeat; pointer-events:none; position:fixed; transform:translate(-50%,-50%); z-index:9999999; }
html.gs-hide-native-cursor, html.gs-hide-native-cursor * { cursor: none !important; }

/* Quantity input styling (show one decimal) */
.quantity-input, .cart-qty-input { width:58px; text-align:center; }

/* Remove extra bracket space if legacy CSS put parentheses around count */
.gs-cart-link::before, .gs-cart-link::after { content: none !important; }

/* Toast style (if missing) */
.sfk-toast { position:fixed; right:18px; bottom:18px; background:#111; color:#fff; padding:10px 14px; border-radius:8px; opacity:0; transform:translateY(8px); transition:all .22s; pointer-events:none; z-index:99999; }
.sfk-toast.show { opacity:1; transform:translateY(0); pointer-events:auto; }

.category-nav .cat-link {
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.category-nav .cat-link.active {
  opacity: 1;
  font-weight: 600;
}

.category-nav .cat-link:hover {
  opacity: 1;
  transform: scale(1.05);
}

.default-page {
  max-width: 900px;
  margin: 50px auto;
  background: #fffdf8;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.default-page .page-title {
  color: #00334d;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  text-transform: capitalize;
}

.default-page .page-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.default-page a {
  color: #0077b6;
  text-decoration: underline;
}
    body.cinematic-landing {
      margin: 0;
      background: #eafaff;
      overflow-x: hidden;
      font-family: "Poppins", sans-serif;
      color: #004b6f;
    }
.hero-landing {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0078a6 0%, #00b9f1 60%, #fffaf3 100%);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}
.hero-content {
  position: relative;
  z-index: 5;
}
.main-title {
  font-size: 4.8rem;
  font-weight: 900;
  text-shadow: 0 0 30px rgba(0,0,0,0.4);
}
.tagline {
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #fff;
  margin: 10px 0 30px;
  text-transform: uppercase;
}
.cta-btn {
  background: #f4b000;
  color: #00293f;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}
.cta-btn:hover {
  background: #ffd84d;
  transform: translateY(-3px);
}

/* Fix hero layering */
#bubbles, #fish-swim {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  opacity: 0.6;
  z-index: 1;
}
.hero-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

/* Story & Sections */
.story-section, .category-section, .cta-section {
  text-align: center;
  padding: 100px 20px;
}
.story-section {
  background: #fffaf3;
}
.story-section h2 {
  color: #00445d;
  font-size: 2.3rem;
}
.story-section p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

/* Floating fish image */
.floaty {
  width: 260px;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%,100%{ transform:translateY(0) }
  50%{ transform:translateY(-15px) }
}

/* Wave transition section */
.wave-transition {
  background: #00b9f1;
  position: relative;
  overflow: hidden;
}
.wave-transition svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Categories */
.category-section {
  background: #e6f8ff;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
  margin-top: 40px;
}
.cat-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform .3s ease;
}
.cat-card:hover { transform: scale(1.05); }
.cat-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: brightness(0.9);
}
.cat-card span {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 14px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(180deg,#b0e8ff,#fffaf3);
}
.cta-section h2 {
  color: #00445d;
  font-size: 2.3rem;
}
.cta-section p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 25px;
}
    .hero-content {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
    }

    .hero-logo {
      width: 150px;
      margin-bottom: 20px;
      animation: floatLogo 5s ease-in-out infinite;
      filter: drop-shadow(0 5px 8px rgba(0,0,0,0.3));
    }
    .main-title {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: #ffffff;
      text-shadow: 0 0 15px rgba(0,0,0,0.5);
      animation: shimmerText 6s ease-in-out infinite alternate;
    }

    @keyframes shimmerText {
      0% { text-shadow: 0 0 10px #fff, 0 0 20px #a2e2ff; }
      100% { text-shadow: 0 0 30px #ffffff, 0 0 60px #a2e2ff; }
    }
        .hero-logo {
      width: 150px;
      margin-bottom: 20px;
      animation: floatLogo 5s ease-in-out infinite;
      filter: drop-shadow(0 5px 8px rgba(0,0,0,0.3));
    }

    @keyframes floatLogo {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

/* --- CATEGORY NAVIGATION BUTTONS --- */

.category-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 16px;
  padding: 18px 8px;
  margin-bottom: 28px;
  background: var(--base-bg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  gap: 12px;
}

.category-nav .cat-link {
  transition: opacity 0.3s ease, transform 0.2s ease, color 0.3s ease;
  opacity: 0.5;
}

.category-nav .cat-link:hover {
  color: var(--gold);
  opacity: 1;
  transform: scale(1.05);
}

.category-nav .cat-link.active {
  color: var(--gold-strong);
  font-weight: 600;
  opacity: 1;
}
/* === CATEGORY BUTTONS - Gold Glass Effect === */
.glowing-btn {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #5a4a2f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  overflow: hidden;
  border-radius: 12px;
  
  /* Glass base - beige tones */
  background: linear-gradient(
    170deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(247, 245, 239, 0.5) 20%,
    rgba(247, 245, 239, 0.3) 50%,
    rgba(212, 175, 55, 0.08) 50%,
    rgba(179, 139, 0, 0.05) 100%
  );
  
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -4px 8px rgba(212, 175, 55, 0.15);
  
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glowing-btn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(212, 175, 55, 0.4) 15%,
    rgba(212, 175, 55, 0.7) 50%,
    rgba(212, 175, 55, 0.4) 85%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.glowing-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(179, 139, 0, 0.3) 5%,
    rgba(179, 139, 0, 0.6) 50%,
    rgba(179, 139, 0, 0.3) 95%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

/* Hover - Gold glow */
.glowing-btn:hover,
.glowing-btn.glow-on-hover:hover {
  color: #3a2a1f;
  text-shadow: 
    0 0 8px rgba(212, 175, 55, 0.5),
    0 0 15px rgba(212, 175, 55, 0.3);
  
  border-color: rgba(212, 175, 55, 0.6);
  
  box-shadow: 
    0 4px 20px rgba(212, 175, 55, 0.3),
    0 0 25px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -4px 12px rgba(212, 175, 55, 0.25);
  
  transform: translateY(-2px);
}

.glowing-btn:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 10px rgba(212, 175, 55, 0.2),
    inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Active category */
.glowing-btn.active {
  color: #2a1a0f;
  font-weight: 700;
  background: linear-gradient(
    170deg,
    rgba(212, 175, 55, 0.4) 0%,
    rgba(212, 175, 55, 0.3) 20%,
    rgba(212, 175, 55, 0.2) 50%,
    rgba(179, 139, 0, 0.15) 50%,
    rgba(179, 139, 0, 0.1) 100%
  );
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 
    0 4px 15px rgba(212, 175, 55, 0.35),
    0 0 20px rgba(212, 175, 55, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glowing-btn .txt {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .glowing-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}



/* --- Fix mobile bottom navigation tap issues --- */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999 !important; /* ensure it sits on top of everything */
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.mobile-bottom-nav .nav-item {
  flex: 1;
  text-align: center;
  font-size: 1.2rem;
  color: #222;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
  color: #0077b6;
  font-weight: 600;
}

.mobile-bottom-nav .nav-item span {
  font-size: 0.8rem;
  margin-top: 3px;
}

/* === SEAFOOD KINGS - Underlay Sea Blue Bubbly Click Effect === */
.bubbly-button {
  position: relative;
  overflow: visible; /* allow bubble expansion */
  z-index: 1;
}

/* Place bubbles BEHIND the button */
.bubbly-button::before,
.bubbly-button::after {
  position: absolute;
  content: '';
  display: block;
  width: 160%;
  height: 160%;
  left: -30%;
  z-index: 0; /* 🔥 ensures it's behind text and button face */
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
  pointer-events: none;
}

.bubbly-button::before {
  display: none;
  top: -90%;
  background-image:
    radial-gradient(circle, #00aaff 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #00aaff 20%, transparent 30%),
    radial-gradient(circle, #00aaff 20%, transparent 20%),
    radial-gradient(circle, #00aaff 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #00aaff 15%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  opacity: 0.8;
}

.bubbly-button::after {
  display: none;
  bottom: -90%;
  background-image:
    radial-gradient(circle, #00aaff 20%, transparent 20%),
    radial-gradient(circle, #00aaff 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #00aaff 15%, transparent 20%),
    radial-gradient(circle, #00aaff 20%, transparent 20%);
  background-size: 20% 20%, 25% 25%, 18% 18%, 20% 20%;
  opacity: 0.8;
}

.bubbly-button.animate::before {
  display: block;
  animation: topBubbles 0.75s ease-in-out forwards;
}
.bubbly-button.animate::after {
  display: block;
  animation: bottomBubbles 0.75s ease-in-out forwards;
}

@keyframes topBubbles {
  0% { background-position: 10% 90%, 30% 90%, 55% 90%, 75% 90%; transform: translateY(0); }
  50% { background-position: 0% 60%, 25% 40%, 50% 20%, 75% 10%; transform: translateY(-10px); }
  100% { background-size: 0 0, 0 0, 0 0, 0 0; opacity: 0; transform: translateY(-20px); }
}

@keyframes bottomBubbles {
  0% { background-position: 10% -10%, 30% -10%, 55% -10%, 75% -10%; transform: translateY(0); }
  50% { background-position: 0% 80%, 25% 90%, 50% 100%, 75% 80%; transform: translateY(10px); }
  100% { background-size: 0 0, 0 0, 0 0, 0 0; opacity: 0; transform: translateY(20px); }
}
/* ——— NEW GLASSY COD OVERLAY ——— */
.cod-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 20px;
  font-family: 'Poppins', sans-serif;
}

.cod-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cod-glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: popIn 0.5s ease-out;
  color: white;
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.cod-icon {
  font-size: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.cod-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cod-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 12px;
}

.cod-message {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.cod-close-btn {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a1a1a;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cod-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cod-close-btn:active {
  transform: translateY(0);
}

/* SFK Step 2C styles */
.sfk-modal {
  position: fixed; inset: 0; display:flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,0.45); z-index:200000; opacity:1;
}
.sfk-modal .sfk-modal-card {
  background: #fff; width: 92%; max-width:420px; border-radius:10px; padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25); font-family: Poppins, Arial, sans-serif;
}
.sfk-modal .sfk-field { margin-top:8px; }
.sfk-modal input { width:100%; padding:8px; border:1px solid #ddd; border-radius:6px; }

.sfk-my-orders-app .sfk-signin-row { display:flex; gap:12px; align-items:center; justify-content:flex-end; }
.sfk-orders-list { display:flex; gap:12px; flex-direction:column; }
.sfk-order-card { background:#fff; border-radius:10px; padding:12px; box-shadow:0 6px 18px rgba(0,0,0,0.06); }
.sfk-order-card .sfk-row { display:flex; justify-content:space-between; align-items:flex-start; gap:12px; }
.sfk-order-card .sfk-items { margin-top:8px; color:#555; font-size:0.95rem; }
.sfk-small { color:#777; font-size:0.85rem; }
.sfk-status { background:#f5f5f5; padding:6px 8px; border-radius:8px; font-weight:600; color:#333; margin-top:4px; display:inline-block; font-size:0.85rem;}
.sfk-muted { color:#777; font-size:0.95rem; }

/* Mobile friendly */
@media (max-width:600px) {
  .sfk-orders-list .sfk-order-card { padding:10px; }
  .sfk-modal .sfk-modal-card { padding:14px; }
}
/* === GOLDENSEAFOOD PRO TICKER - FINAL FIX === */
.gs-ticker-pro {
  overflow: hidden;
  background: linear-gradient(180deg, #fefcf9, #f2ebdb) !important;
  border-top: 1px solid #e6e0d2 !important;
  border-bottom: 1px solid #e6e0d2 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08), inset 0 2px 3px rgba(255,255,255,0.6) !important;
  position: relative;
  margin: 0 !important;
  padding: 10px 0 !important;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
}

.gs-ticker-pro::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 300%; height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0,166,192,0.12), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0,166,192,0.08), transparent 50%);
  animation: waterFlow 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.gs-ticker-pro::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 200%; height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(212,175,55,0.18) 40%, 
    rgba(255,255,255,0.4) 50%, 
    rgba(212,175,55,0.18) 60%, 
    transparent
  );
  animation: goldShine 3.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.ticker-wrapper {
  display: flex;
  width: fit-content;
  animation: scrollPro 32s linear infinite;
  position: relative;
  z-index: 2;
}
.ticker-wrapper:hover { animation-play-state: paused; }

.ticker-content {
  display: flex;
  gap: 90px;
  white-space: nowrap;
  padding: 0 50px;
  margin: 0;
  list-style: none;
  flex-shrink: 0;
}

.gs-ticker-pro li {
  font-weight: 700 !important;
  font-size: 16.5px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.1px !important;
  color: transparent !important;
  background: linear-gradient(135deg, #d4af37, #b38b00) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6), 0 0 4px rgba(212,175,55,0.3) !important;
  animation: floatText 2.4s ease-in-out infinite alternate;
  transform: perspective(150px) translateZ(3px);
}

/* Force Animations */
@keyframes scrollPro { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes waterFlow { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-90px) scaleX(1.04); } }
@keyframes goldShine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes floatText { 
  0% { transform: perspective(150px) translateZ(3px) translateY(0); }
  100% { transform: perspective(150px) translateZ(6px) translateY(-1px); }
}

/* Mobile */
@media (max-width: 768px) {
  .gs-ticker-pro li { font-size: 14px !important; }
  .ticker-content { gap: 50px !important; padding: 0 25px !important; }
}

