/* ==========================================================================
   ALLYSEAFOOD - Core Design System & Responsive Mobile-First Stylesheet
   Brand: "Fresh from the Ocean, Direct to Your Table"
   Fully optimized for Mobile Phones, Tablets, Laptops, and Large Desktops
   ========================================================================== */

:root {
    /* Brand Ocean Color Palette */
    --bg-primary: #050d18;
    --bg-secondary: #0a192f;
    --bg-surface: #0f2744;
    --bg-surface-elevated: #143258;
    --bg-card: rgba(15, 39, 68, 0.75);
    --bg-card-hover: rgba(20, 50, 88, 0.9);

    /* Vibrant Accents */
    --accent-teal: #00d2d3;
    --accent-cyan: #48dbfb;
    --accent-gold: #f39c12;
    --accent-coral: #ff6b6b;
    --accent-emerald: #10ac84;

    /* Typography Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-accent: #38ef7d;

    /* Borders & Lines */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    --border-highlight: rgba(0, 210, 211, 0.4);

    /* Shadows & Glow */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.55);
    --glow-teal: 0 0 35px rgba(0, 210, 211, 0.25);
    --glow-cyan: 0 0 25px rgba(72, 219, 251, 0.2);

    /* Layout & Sizing Tokens */
    --max-width: 1240px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Touch & Ergonomics Tokens */
    --touch-min: 44px;
    --header-height: 76px;
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-top: env(safe-area-inset-top, 0px);
}

/* ==========================================================================
   Base & Reset (Strict Zero Horizontal Scroll)
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

/* Ensure all anchored sections align cleanly below the fixed header */
section[id],
div[id],
article[id] {
    scroll-margin-top: calc(var(--header-height) + 16px);
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 210, 211, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(16, 172, 132, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(72, 219, 251, 0.07) 0%, transparent 50%),
        linear-gradient(180deg, #050d18 0%, #081524 50%, #030810 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fluid Typography Elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    word-break: break-word;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.8vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* ==========================================================================
   Container & Layout Structure
   ========================================================================== */
.container {
    width: min(var(--max-width), calc(100% - clamp(24px, 5vw, 48px)));
    margin-inline: auto;
}

main {
    flex: 1 0 auto;
    width: 100%;
}

/* ==========================================================================
   Header & Navigation (Adaptive Desktop & Glass Mobile Drawer)
   ========================================================================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(5, 13, 24, 0.88);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
    width: 100%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
    min-height: var(--header-height);
}

/* Brand Identity */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    user-select: none;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-teal), #0abde3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050d18;
    box-shadow: 0 6px 18px rgba(0, 210, 211, 0.35);
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.brand-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(0, 210, 211, 0.4);
    box-shadow: 0 4px 14px rgba(0, 210, 211, 0.25);
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: block;
}

.brand:hover .brand-icon,
.brand:hover .brand-logo-img {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 210, 211, 0.45);
}

.brand-info strong {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    background: linear-gradient(90deg, #ffffff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.15;
}

.brand-info span {
    font-size: clamp(0.68rem, 1.5vw, 0.78rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-teal);
    font-weight: 600;
    display: block;
}

/* Desktop Navigation Links */
.navlinks {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navlinks a {
    padding: 9px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    transition: var(--transition);
}

.navlinks a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.navlinks a.active {
    color: #ffffff;
    background: rgba(0, 210, 211, 0.14);
    border: 1px solid rgba(0, 210, 211, 0.35);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Toggle Hamburger Button */
.mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.3rem;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    user-select: none;
}

.mobile-toggle:hover,
.mobile-toggle:focus {
    background: rgba(0, 210, 211, 0.15);
    border-color: var(--accent-teal);
    color: var(--accent-teal);
}

/* Mobile Drawer Overlay Backdrop */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 8, 16, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.active {
    display: block;
    opacity: 1;
}

/* Mobile Actions inside Drawer */
.mobile-drawer-actions {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    min-height: var(--touch-min);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    user-select: none;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: #ffffff;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #0abde3 100%);
    color: #050d18;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 210, 211, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00f2fe 0%, var(--accent-teal) 100%);
    box-shadow: 0 10px 25px rgba(0, 210, 211, 0.45);
    color: #050d18;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e67e22 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

.btn-accent:hover {
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.45);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-teal);
    color: var(--accent-teal);
}

.btn-outline:hover {
    background: rgba(0, 210, 211, 0.14);
    border-color: var(--accent-cyan);
    color: #ffffff;
}

.btn-sm {
    padding: 8px 16px;
    min-height: 38px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 15px 28px;
    min-height: 50px;
    font-size: clamp(0.98rem, 2vw, 1.08rem);
    border-radius: var(--radius-md);
}

/* Badges & Tags */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: clamp(0.75rem, 1.5vw, 0.82rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(0, 210, 211, 0.1);
    border: 1px solid rgba(0, 210, 211, 0.3);
    color: var(--accent-teal);
    width: fit-content;
    max-width: 100%;
}

.pill-badge.gold {
    background: rgba(243, 156, 18, 0.12);
    border-color: rgba(243, 156, 18, 0.35);
    color: var(--accent-gold);
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-teal);
    box-shadow: 0 0 10px var(--accent-teal);
    flex-shrink: 0;
}

.pill-badge.gold .pill-dot {
    background-color: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: clamp(0.72rem, 1.4vw, 0.78rem);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    white-space: nowrap;
}

.tag.hot {
    background: rgba(255, 107, 107, 0.14);
    border-color: rgba(255, 107, 107, 0.35);
    color: #ff8787;
}

.tag.fresh {
    background: rgba(16, 172, 132, 0.14);
    border-color: rgba(16, 172, 132, 0.35);
    color: #2ed573;
}

/* ==========================================================================
   Sections & Layout Grids
   ========================================================================== */
.section {
    padding: clamp(48px, 7vw, 90px) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(30px, 5vw, 50px) auto;
}

.section-header.left {
    text-align: left;
    margin-left: 0;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin: 12px 0 14px 0;
    color: #ffffff;
}

.section-subtitle {
    font-size: clamp(0.96rem, 1.6vw, 1.08rem);
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Grid Layouts with Mobile-First Defaults */
.grid {
    display: grid;
    gap: clamp(16px, 3vw, 28px);
    width: 100%;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* ==========================================================================
   Hero Section & Showcase Card
   ========================================================================== */
.hero {
    padding: clamp(36px, 6vw, 80px) 0 clamp(44px, 7vw, 90px) 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.1rem, 5.2vw, 3.8rem);
    line-height: 1.12;
    margin: 16px 0 20px 0;
}

.hero h1 span.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-teal) 50%, #48dbfb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    margin-bottom: 28px;
    color: var(--text-secondary);
    max-width: 560px;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-tags-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 2vw, 16px);
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.stat-item strong {
    display: block;
    font-size: clamp(1.4rem, 3.2vw, 1.85rem);
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
}

.stat-item span {
    font-size: clamp(0.75rem, 1.4vw, 0.85rem);
    color: var(--text-muted);
    line-height: 1.3;
}

/* Glass Showcase Card */
.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--glow-teal);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
}

.showcase-visual {
    padding: clamp(24px, 4vw, 36px) clamp(20px, 3.5vw, 30px);
    background: linear-gradient(180deg, rgba(0, 210, 211, 0.16) 0%, rgba(15, 39, 68, 0.85) 100%);
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-icon-main {
    font-size: clamp(3.2rem, 7vw, 4.5rem);
    text-align: center;
    margin: 12px 0;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.showcase-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.showcase-body {
    padding: clamp(20px, 3.5vw, 28px);
}

.showcase-quick-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.showcase-quick-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: clamp(0.88rem, 1.4vw, 0.94rem);
    color: var(--text-secondary);
    line-height: 1.5;
}

.showcase-quick-list li .check-icon {
    color: var(--accent-teal);
    font-weight: bold;
    flex-shrink: 0;
}

/* ==========================================================================
   Seafood Menu Cards & Product Grid
   ========================================================================== */
.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-lg), var(--glow-cyan);
    background: var(--bg-card-hover);
}

.menu-card-header {
    height: clamp(170px, 24vw, 210px);
    padding: 18px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(0, 210, 211, 0.15) 0%, rgba(10, 25, 47, 0.8) 100%);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.menu-card-header.gold-theme {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.18) 0%, rgba(10, 25, 47, 0.8) 100%);
}

.menu-card-header.coral-theme {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.18) 0%, rgba(10, 25, 47, 0.8) 100%);
}

.menu-card-header.emerald-theme {
    background: linear-gradient(135deg, rgba(16, 172, 132, 0.18) 0%, rgba(10, 25, 47, 0.8) 100%);
}

.menu-item-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.menu-card:hover .menu-item-photo {
    transform: scale(1.06);
}

.menu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    z-index: 2;
    width: 100%;
}

.menu-item-icon {
    font-size: clamp(3rem, 6vw, 3.8rem);
    position: absolute;
    right: 18px;
    bottom: 10px;
    opacity: 0.9;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
    transition: transform 0.35s ease;
}

.menu-card:hover .menu-item-icon {
    transform: scale(1.1) rotate(-4deg);
}

.menu-card-body {
    padding: clamp(18px, 3vw, 24px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item-title {
    font-size: clamp(1.2rem, 2.2vw, 1.4rem);
    margin-bottom: 8px;
    color: #ffffff;
}

.menu-item-desc {
    font-size: clamp(0.88rem, 1.4vw, 0.93rem);
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.55;
    flex-grow: 1;
}

/* Card Price Row */
.card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 14px 0;
    padding: 10px 14px;
    background: rgba(0, 210, 211, 0.06);
    border: 1px solid rgba(0, 210, 211, 0.2);
    border-radius: var(--radius-sm);
}

.card-price-val {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.2rem, 2.4vw, 1.38rem);
    font-weight: 800;
    color: var(--accent-teal);
}

.card-price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 2px;
}

.card-min-order {
    font-size: 0.76rem;
    color: var(--accent-gold);
    font-weight: 700;
    background: rgba(243, 156, 18, 0.14);
    border: 1px solid rgba(243, 156, 18, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.menu-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.28);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid var(--border-subtle);
}

.spec-block {
    display: flex;
    flex-direction: column;
}

.spec-block .label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.spec-block .val {
    font-size: clamp(0.82rem, 1.4vw, 0.9rem);
    font-weight: 700;
    color: var(--accent-teal);
    word-break: break-word;
}

.card-btn-group {
    display: flex;
    gap: 8px;
    width: 100%;
}

.card-btn-group .btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    font-size: 0.88rem;
    min-height: 42px;
}

/* ==========================================================================
   Category Filter Bar & Search
   ========================================================================== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
    width: 100%;
}

.filter-btn {
    padding: 10px 18px;
    min-height: var(--touch-min);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-teal);
    color: #050d18;
    border-color: var(--accent-teal);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 210, 211, 0.35);
}

/* ==========================================================================
   Single Product Detail Page Components
   ========================================================================== */
.product-hero {
    padding: clamp(36px, 5vw, 60px) 0 clamp(36px, 5vw, 50px) 0;
    border-bottom: 1px solid var(--border-subtle);
    background: radial-gradient(circle at 70% 30%, rgba(0, 210, 211, 0.12) 0%, transparent 60%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: clamp(0.82rem, 1.4vw, 0.88rem);
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb a:hover {
    color: var(--accent-teal);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(24px, 4vw, 50px);
    align-items: start;
    margin-top: 24px;
}

.product-gallery-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 3.5vw, 36px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: sticky;
    top: 96px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.gallery-large-icon {
    font-size: clamp(4.5rem, 10vw, 6.5rem);
    margin: 16px 0;
    filter: drop-shadow(0 15px 30px rgba(0, 210, 211, 0.3));
    animation: float 4s ease-in-out infinite;
}

.gallery-quick-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
}

.gallery-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--accent-teal);
    transform: scale(1.06);
    box-shadow: 0 0 10px rgba(0, 210, 211, 0.4);
}

.product-price-box {
    padding: clamp(16px, 3vw, 22px) clamp(16px, 3.5vw, 24px);
    background: rgba(0, 210, 211, 0.08);
    border: 1px solid rgba(0, 210, 211, 0.25);
    border-radius: var(--radius-md);
    margin: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.price-main {
    font-size: clamp(1.5rem, 3.5vw, 1.85rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
}

.price-main span {
    font-size: clamp(0.82rem, 1.5vw, 0.9rem);
    color: var(--text-muted);
    font-weight: normal;
}

/* Tabs */
.product-tabs {
    margin: 28px 0;
    width: 100%;
}

.tab-nav {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.tab-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: clamp(0.88rem, 1.6vw, 0.98rem);
    font-weight: 700;
    padding: 10px 16px;
    min-height: var(--touch-min);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.tab-btn.active, .tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.tab-btn.active {
    color: var(--accent-teal);
    border-bottom: 2px solid var(--accent-teal);
    border-radius: 0;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Calculator Card */
.calc-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 3.5vw, 30px);
    margin-top: 24px;
    width: 100%;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0;
}

.calc-result {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Feature & Trust Panels */
.feature-box {
    padding: clamp(20px, 3vw, 26px);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition);
    width: 100%;
}

.feature-box:hover {
    border-color: var(--border-highlight);
    transform: translateY(-3px);
    background: var(--bg-card-hover);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 210, 211, 0.12);
    border: 1px solid rgba(0, 210, 211, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--accent-teal);
}

.feature-title {
    font-size: clamp(1.15rem, 2vw, 1.25rem);
    margin-bottom: 8px;
    color: #ffffff;
}

/* Trust Pillar Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
    margin-top: 24px;
    width: 100%;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: clamp(20px, 3vw, 24px) clamp(16px, 2.5vw, 20px);
    text-align: center;
    transition: var(--transition);
}

.trust-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.trust-icon {
    font-size: clamp(2rem, 4vw, 2.4rem);
    margin-bottom: 10px;
    display: inline-block;
}

.trust-title {
    font-size: clamp(1.05rem, 1.8vw, 1.18rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.trust-desc {
    font-size: clamp(0.85rem, 1.4vw, 0.9rem);
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Forms & Controls (iOS Safari Auto-Zoom Safe with 16px Font Size)
   ========================================================================== */
.form-group {
    margin-bottom: 18px;
    width: 100%;
}

.form-label {
    display: block;
    font-size: clamp(0.84rem, 1.4vw, 0.88rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: rgba(5, 13, 24, 0.65);
    border: 1px solid var(--border-light);
    color: #ffffff;
    font-size: 16px; /* Strict 16px prevents iOS Safari auto-zoom on mobile focus */
    font-family: inherit;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(0, 210, 211, 0.22);
    background: rgba(5, 13, 24, 0.9);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    padding: 14px 16px;
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300d2d3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

select.form-control option {
    background-color: var(--bg-secondary);
    color: #ffffff;
}

.form-control.is-invalid {
    border-color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.08) !important;
}

.invalid-feedback {
    color: #ff8585;
    font-size: 0.78rem;
    margin-top: 4px;
    display: none;
}

.form-group.has-error .invalid-feedback {
    display: block;
}

/* ==========================================================================
   Quantity Stepper (Large Touch Targets)
   ========================================================================== */
.qty-stepper {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.qty-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-light);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    flex-shrink: 0;
}

.qty-btn:hover {
    background: var(--accent-teal);
    color: #050d18;
    border-color: var(--accent-teal);
}

.qty-btn:active {
    transform: scale(0.94);
}

.qty-input {
    flex: 1;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-teal);
    min-height: 48px;
}

/* ==========================================================================
   CTA Banner & WhatsApp Sections
   ========================================================================== */
.cta-banner {
    background: linear-gradient(135deg, rgba(0, 210, 211, 0.2) 0%, rgba(10, 25, 47, 0.92) 100%);
    border: 1px solid rgba(0, 210, 211, 0.35);
    border-radius: var(--radius-lg);
    padding: clamp(30px, 5vw, 50px) clamp(20px, 4vw, 40px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.whatsapp-cta-section {
    background: linear-gradient(135deg, rgba(16, 172, 132, 0.16), rgba(0, 210, 211, 0.14));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: clamp(30px, 5vw, 48px) clamp(20px, 4vw, 40px);
    text-align: center;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* ==========================================================================
   Floating WhatsApp Widget (Touch Screen Friendly & Safe Area Aware)
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: max(20px, calc(16px + var(--safe-area-bottom)));
    right: max(20px, calc(16px + env(safe-area-inset-right, 0px)));
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    padding: 12px 20px;
    min-height: 48px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    user-select: none;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

.floating-whatsapp:active {
    transform: translateY(0) scale(0.98);
}

.floating-whatsapp-icon {
    font-size: 1.4rem;
    line-height: 1;
}

/* ==========================================================================
   Interactive Modals (Responsive Viewport Heights & Safe Scrolling)
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(3, 8, 16, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 3vw, 24px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-container,
.modal-card {
    background: linear-gradient(180deg, #0e223d 0%, #071527 100%);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), var(--glow-teal);
    width: min(640px, 100%);
    max-height: min(92vh, calc(100dvh - 32px));
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto;
    flex-shrink: 0;
    position: relative;
}

.modal-backdrop.active .modal-container,
.modal-backdrop.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: clamp(14px, 3vw, 18px) clamp(16px, 3.5vw, 24px);
    background: rgba(5, 13, 24, 0.85);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-shrink: 0 !important;
    z-index: 5;
}

.modal-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.modal-title-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.modal-title {
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    user-select: none;
}

.modal-close:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.4);
}

/* Modal Form Flex Container Fix */
.modal-card form,
.modal-container form,
form#modalOrderForm,
form.modal-form-wrapper {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    overflow: hidden !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Modal Body Scroll Container Fix */
.modal-body {
    padding: clamp(16px, 3.5vw, 24px) clamp(16px, 3.5vw, 24px) 28px clamp(16px, 3.5vw, 24px);
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-teal) rgba(5, 13, 24, 0.4);
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(5, 13, 24, 0.4);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--accent-teal);
    border-radius: 4px;
}

/* Modal Footer Fixed at bottom of modal */
.modal-footer {
    padding: 14px clamp(16px, 3.5vw, 24px);
    background: rgba(5, 13, 24, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0 !important;
    width: 100%;
    position: relative;
    z-index: 10;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.35);
}

/* Order Summary Box inside Modal */
.summary-box,
.order-summary-box {
    background: rgba(5, 13, 24, 0.7);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-top: 16px;
}

.summary-row,
.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.85rem, 1.4vw, 0.9rem);
    color: var(--text-secondary);
    margin-bottom: 6px;
    gap: 12px;
}

.summary-row .label {
    color: var(--text-muted);
}

.summary-row.total,
.summary-line.total-line,
.summary-line.total {
    border-top: 1px solid var(--border-subtle);
    padding-top: 10px;
    margin-top: 8px;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.summary-row.total .val,
.summary-line.total .val {
    color: var(--accent-teal);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 800;
}

/* Modal Review & WhatsApp Confirmation State */
.modal-success-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: fadeInModalState 0.25s ease-out;
}

@keyframes fadeInModalState {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.btn-whatsapp-order {
    background: #25D366 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35) !important;
    transition: var(--transition) !important;
}

.btn-whatsapp-order:hover {
    background: #20ba5a !important;
    transform: translateY(-2px) scale(1.01) !important;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55) !important;
    color: #ffffff !important;
}

.btn-whatsapp-order:active {
    transform: translateY(0) scale(0.99) !important;
}

/* ==========================================================================
   Product Details Modal Specialized Styles (Mobile-First & Fully Responsive)
   ========================================================================== */
.modal-card-details {
    max-width: 620px;
    width: 100%;
}

.details-modal-image-wrap {
    width: 100%;
    height: clamp(180px, 38vw, 240px);
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
    margin-bottom: 16px;
    background: #050d18;
    border: 1px solid rgba(0, 210, 211, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.details-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.details-modal-image-wrap:hover .details-modal-img {
    transform: scale(1.03);
}

.details-modal-img-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    z-index: 2;
    pointer-events: none;
}

.details-modal-img-badges .pill-badge,
.details-modal-img-badges .tag {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    font-size: 0.76rem;
}

.details-price-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 210, 211, 0.08);
    border: 1px solid rgba(0, 210, 211, 0.25);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.details-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.details-price-val {
    font-size: clamp(1.25rem, 3.2vw, 1.55rem);
    color: var(--accent-teal);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.details-price-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.details-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.details-modal-footer {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.details-modal-footer .btn {
    min-height: 44px;
    font-size: 0.95rem;
    font-weight: 700;
}

.more-products-cta-wrap {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.card-footer-info {
    margin-top: auto;
    width: 100%;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
footer {
    background: #02070e;
    border-top: 1px solid var(--border-subtle);
    padding: clamp(45px, 7vw, 70px) 0 clamp(25px, 4vw, 35px) 0;
    margin-top: auto;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: clamp(24px, 4vw, 40px);
    margin-bottom: clamp(30px, 5vw, 50px);
}

.footer-col h4 {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.footer-links-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-links-list a {
    color: var(--text-muted);
    font-size: 0.92rem;
    display: inline-block;
    padding: 2px 0;
    min-height: 28px;
    line-height: 1.5;
}

.footer-links-list a:hover {
    color: var(--accent-teal);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: clamp(0.78rem, 1.3vw, 0.85rem);
    color: var(--text-muted);
}

/* Footer Social Media Buttons */
.footer-social-wrap {
    margin-top: 16px;
}
.footer-social-title {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    font-weight: 700;
}
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    height: 34px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
    line-height: 1;
}
.social-icon-btn svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    transition: transform 0.25s ease;
}
.social-icon-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}
.social-icon-btn:hover svg {
    transform: scale(1.12);
}
.social-icon-btn.tiktok:hover {
    background: rgba(254, 44, 85, 0.15);
    border-color: #fe2c55;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(254, 44, 85, 0.35);
}
.social-icon-btn.instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: #e1306c;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.35);
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: max(20px, calc(16px + var(--safe-area-bottom)));
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: calc(100vw - 40px);
    pointer-events: none;
}

.toast {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--accent-teal);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideUp 0.3s ease;
    font-size: 0.9rem;
    pointer-events: auto;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   ADMIN PANEL STYLES & RESPONSIVE DATA WRAPPERS
   ========================================================================== */
.admin-nav {
    background: rgba(6, 13, 23, 0.95);
    border-bottom: 1px solid rgba(0, 210, 211, 0.2);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
}

.admin-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.admin-links {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-links a {
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
}

.admin-links a:hover,
.admin-links a.active {
    background: rgba(0, 210, 211, 0.15);
    color: var(--accent-teal);
}

.admin-stat-card {
    background: rgba(13, 27, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: clamp(16px, 3vw, 22px);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.admin-stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 210, 211, 0.3);
}

.admin-stat-number {
    font-size: clamp(1.75rem, 4vw, 2.2rem);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin: 6px 0 4px 0;
    color: #ffffff;
}

.admin-table-wrap {
    background: rgba(13, 27, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 16px;
    width: 100%;
    position: relative;
}

.admin-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.admin-table th {
    background: rgba(0, 210, 211, 0.08);
    color: var(--accent-teal);
    padding: 12px 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.admin-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
}

.badge-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge-pending { background: rgba(243, 156, 18, 0.2); color: #f39c12; border: 1px solid rgba(243, 156, 18, 0.4); }
.badge-confirmed { background: rgba(0, 210, 211, 0.2); color: #00d2d3; border: 1px solid rgba(0, 210, 211, 0.4); }
.badge-processing { background: rgba(52, 152, 219, 0.2); color: #3498db; border: 1px solid rgba(52, 152, 219, 0.4); }
.badge-completed { background: rgba(46, 204, 113, 0.2); color: #2ecc71; border: 1px solid rgba(46, 204, 113, 0.4); }
.badge-cancelled { background: rgba(231, 76, 60, 0.2); color: #e74c3c; border: 1px solid rgba(231, 76, 60, 0.4); }
.badge-new { background: rgba(235, 77, 75, 0.2); color: #ff7675; border: 1px solid rgba(235, 77, 75, 0.4); }
.badge-contacted { background: rgba(0, 210, 211, 0.2); color: #00d2d3; }
.badge-resolved { background: rgba(46, 204, 113, 0.2); color: #2ecc71; }

/* ==========================================================================
   CROSS-DEVICE RESPONSIVE BREAKPOINT ARCHITECTURE
   ========================================================================== */

/* 1. Large Laptops & Desktops (>= 1200px) */
@media (min-width: 1200px) {
    .container {
        width: min(var(--max-width), calc(100% - 48px));
    }
}

/* 2. Medium Laptops & Tablets Landscape (992px to 1199px) */
@media (max-width: 1199px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
        gap: 28px;
    }
}

/* 3. Tablets & Phablets (769px to 991px) */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero p {
        max-width: 100%;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-gallery-box {
        position: static;
    }

    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* 4. Mobile Devices & Small Tablets (<= 768px) */
@media (max-width: 768px) {
    :root {
        --header-height: 68px;
    }

    /* Show Mobile Hamburger Toggle */
    .mobile-toggle {
        display: inline-flex;
    }

    /* Hide desktop nav actions in top bar */
    .nav-actions {
        display: none;
    }

    /* Mobile Sliding Drawer Menu */
    .navlinks {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(10, 25, 47, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 24px 28px 24px;
        border-bottom: 1px solid var(--border-highlight);
        box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.7);
        display: none;
        z-index: 999;
        max-height: calc(100dvh - var(--header-height));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
    }

    .navlinks.open {
        display: flex;
        animation: slideDrawerDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes slideDrawerDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navlinks a {
        padding: 14px 18px;
        font-size: 1.05rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-subtle);
        width: 100%;
        min-height: 48px;
    }

    .navlinks a:hover,
    .navlinks a.active {
        background: rgba(0, 210, 211, 0.15);
        border-color: var(--accent-teal);
        color: #ffffff;
    }

    .mobile-drawer-actions {
        display: flex;
    }

    .mobile-drawer-actions .btn {
        width: 100%;
    }

    /* Mobile Modal Display & Scroll Fix */
    .modal-backdrop {
        align-items: flex-start !important;
        justify-content: center !important;
        padding: 12px 10px 24px 10px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .modal-container,
    .modal-card,
    .modal-card-details {
        width: 100% !important;
        max-width: 100% !important;
        max-height: calc(100dvh - 24px) !important;
        height: auto !important;
        margin: 0 auto !important;
        border-radius: var(--radius-md) !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }

    .modal-body {
        flex: 1 1 auto !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 14px 14px 20px 14px !important;
        min-height: 0 !important;
    }

    .details-modal-image-wrap {
        width: 100% !important;
        height: clamp(160px, 45vw, 220px) !important;
        min-height: 140px !important;
        max-height: 220px !important;
        overflow: hidden !important;
        border-radius: var(--radius-md) !important;
        position: relative !important;
        margin-bottom: 14px !important;
        display: block !important;
        flex-shrink: 0 !important;
    }

    .details-modal-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .details-price-banner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding: 10px 12px !important;
        margin-bottom: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .details-specs-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)) !important;
        gap: 8px !important;
        margin-bottom: 12px !important;
        width: 100% !important;
    }

    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .product-gallery-box {
        position: static !important;
        padding: 16px 12px !important;
        width: 100% !important;
    }

    /* Product Cards & Calculator Grids */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .calc-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .order-form-grid {
        grid-template-columns: 1fr;
    }

    /* Filter Bar Swipeable on Mobile */
    .filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 24px;
        padding-inline: 4px;
    }

    .filter-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    /* Footer Mobile Stacking */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Admin Nav Mobile Adaptation */
    .admin-nav-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-links {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .admin-links::-webkit-scrollbar {
        display: none;
    }
}

/* 5. Mobile Phones Portrait (<= 576px) */
@media (max-width: 576px) {
    .container {
        width: calc(100% - 24px);
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-item strong {
        font-size: 1.35rem;
    }

    .stat-item span {
        font-size: 0.72rem;
    }

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

    .card-btn-group {
        flex-direction: row;
        gap: 8px;
    }

    .card-btn-group .btn {
        flex: 1;
        padding: 10px 8px;
        font-size: 0.86rem;
    }

    .details-modal-image-wrap {
        height: 180px;
        margin-bottom: 12px;
    }

    .details-price-banner {
        padding: 10px 12px;
        margin-bottom: 12px;
    }

    .details-modal-footer {
        flex-direction: row;
        gap: 8px;
        padding: 10px 14px;
    }

    .details-modal-footer .btn {
        min-height: 44px;
        font-size: 0.9rem;
    }

    .modal-footer {
        flex-direction: row;
        gap: 8px;
        padding: 10px 14px;
    }

    .modal-footer .btn {
        min-height: 44px;
    }

    .modal-footer #orderModalCancel,
    .modal-footer #detailsModalCloseBtn {
        flex: 0 0 auto;
        min-width: 76px;
        padding: 8px 12px;
    }

    .modal-footer #btnSubmitOrder,
    .modal-footer #detailsOrderBtn {
        flex: 1 1 auto;
        padding: 8px 12px;
        font-size: 0.92rem;
    }

    /* Floating WhatsApp on small screens: compact touch circle with high contrast */
    .floating-whatsapp {
        padding: 13px;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        justify-content: center;
    }

    .floating-whatsapp span.floating-text {
        display: none;
    }

    .floating-whatsapp-icon {
        font-size: 1.6rem;
    }
}

/* 6. Ultra-Compact Phones (<= 380px) */
@media (max-width: 380px) {
    .brand-info span {
        display: none;
    }

    .brand-info strong {
        font-size: 1.08rem;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .menu-specs {
        grid-template-columns: 1fr;
    }

    .card-btn-group {
        flex-direction: column;
        gap: 6px;
    }

    .modal-footer #btnSubmitOrder,
    .modal-footer #detailsOrderBtn {
        font-size: 0.85rem;
    }
}

/* 7. Short Viewport Adaptation (Landscape Phones & Small Screens) */
@media (max-height: 580px) {
    .modal-container,
    .modal-card {
        max-height: 96dvh !important;
    }

    .modal-header {
        padding: 8px 14px !important;
    }

    .modal-header .modal-title {
        font-size: 1.1rem !important;
    }

    .modal-body {
        padding: 10px 14px 18px 14px !important;
    }

    .modal-footer {
        padding: 8px 14px !important;
    }

    .navlinks {
        max-height: calc(100dvh - var(--header-height));
    }
}

/* ==========================================================================
   8. Enhanced Components: Categories, Process, Testimonials, FAQ, Delivery
   ========================================================================== */

/* Daily Catch Freshness Ribbon */
.catch-ribbon {
    background: linear-gradient(90deg, rgba(0, 210, 211, 0.15), rgba(254, 202, 87, 0.15), rgba(0, 210, 211, 0.15));
    border-top: 1px solid rgba(0, 210, 211, 0.3);
    border-bottom: 1px solid rgba(0, 210, 211, 0.3);
    padding: 12px 0;
    text-align: center;
    font-size: 0.92rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.catch-ribbon strong {
    color: var(--accent-gold);
}

/* Interactive Category Cards */
.cat-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.cat-card {
    background: rgba(13, 27, 42, 0.7);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-teal);
    background: rgba(13, 27, 42, 0.95);
    box-shadow: 0 12px 30px rgba(0, 210, 211, 0.2);
}
.cat-card:hover::before {
    opacity: 1;
}
.cat-card-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.cat-card:hover .cat-card-icon {
    transform: scale(1.15);
}
.cat-card-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}
.cat-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0 0 14px 0;
    line-height: 1.4;
}
.cat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 10px;
    font-size: 0.82rem;
}

/* Process Step Cards */
.step-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 28px;
    position: relative;
}
.step-card {
    background: rgba(13, 27, 42, 0.65);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    position: relative;
    transition: all 0.3s ease;
}
.step-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.step-number-badge {
    position: absolute;
    top: -14px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-teal), #0984e3);
    color: #060d17;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(0, 210, 211, 0.4);
}
.step-icon {
    font-size: 2.2rem;
    margin: 8px 0 14px 0;
}
.step-title {
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0 0 8px 0;
}
.step-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* Quality Journey / Ocean to Table */
.quality-journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.journey-card {
    background: rgba(6, 13, 23, 0.8);
    border: 1px solid rgba(0, 210, 211, 0.2);
    border-radius: var(--radius-md);
    padding: 22px;
    text-align: left;
    position: relative;
}
.journey-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.journey-title {
    font-size: 1.05rem;
    color: #ffffff;
    margin: 0 0 6px 0;
}
.journey-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Customer Testimonials & Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 28px;
}
.review-card {
    background: rgba(13, 27, 42, 0.7);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.review-card:hover {
    border-color: rgba(254, 202, 87, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.review-stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.review-quote {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-style: italic;
}
.review-author-group {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 14px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-teal), #0984e3);
    color: #060d17;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.review-author-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.92rem;
    margin: 0 0 2px 0;
}
.review-author-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

/* FAQ Accordion */
.faq-container {
    max-width: 840px;
    margin: 28px auto 0 auto;
}
.faq-item {
    background: rgba(13, 27, 42, 0.7);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.faq-item.active {
    border-color: var(--accent-teal);
    background: rgba(13, 27, 42, 0.95);
}
.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    font-family: inherit;
}
.faq-toggle-icon {
    font-size: 1.2rem;
    color: var(--accent-teal);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--accent-gold);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 20px 20px 20px;
}

/* Delivery Zone Coverage Badges */
.zone-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.zone-tag {
    background: rgba(0, 210, 211, 0.1);
    border: 1px solid rgba(0, 210, 211, 0.25);
    color: var(--accent-teal);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
}

/* Catalog Toolbar (Search & Sort) */
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}
.catalog-search-wrap {
    flex: 2;
    min-width: 240px;
}
.catalog-sort-wrap {
    flex: 1;
    min-width: 180px;
}

/* ==========================================================================
   9. Premium Homepage Enhancements (Hero Showcase & Interactive Visuals)
   ========================================================================== */
.hero-visual-card {
    background: linear-gradient(145deg, rgba(13, 27, 42, 0.95), rgba(6, 13, 23, 0.98));
    border: 2px solid rgba(0, 210, 211, 0.35);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 210, 211, 0.15);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.hero-visual-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 210, 211, 0.25);
    border-color: var(--accent-teal);
}
.hero-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #060d17;
}
.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.hero-visual-card:hover .hero-image-wrap img {
    transform: scale(1.06);
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 13, 23, 0.2) 0%, rgba(6, 13, 23, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}
.live-pulse-dot {
    width: 10px;
    height: 10px;
    background: #00d2d3;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(0, 210, 211, 0.6);
    animation: livePulse 2s infinite;
}
@keyframes livePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 211, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 210, 211, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 211, 0); }
}

.glow-card {
    background: rgba(13, 27, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.glow-card:hover {
    border-color: var(--accent-teal);
    background: rgba(13, 27, 42, 0.95);
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 210, 211, 0.15);
}
.glow-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.glow-card:hover::after {
    opacity: 1;
}