/* 
   Little Ocean - Premium Fish Shop
   Design System & Core Styles
*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette - Dark Theme */
    --color-bg-dark: #030d2a;
    /* New Dark Background */
    --color-primary: #0a1a3a;
    /* Deep Ocean Blue - slightly lighter than bg */
    --color-primary-light: #0f2550;
    --color-secondary: #39cccc;
    /* Teal/Cyan */
    --color-accent: #D4AF37;
    /* Gold - Premium utility */
    --color-text-main: #f0f4f8;
    /* Light text for dark bg */
    --color-text-light: #f8f9fa;
    --color-text-muted: #a0b0c0;
    /* Muted text for dark bg */
    --color-bg-light: #061230;
    /* Dark variant for sections */
    --color-bg-card: #0a1a3a;
    /* Card background */
    --color-white: #ffffff;

    /* Gradients */
    --gradient-ocean: linear-gradient(135deg, #030d2a 0%, #0a1a3a 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.4);
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition-fast: 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white);
}

.text-primary {
    color: var(--color-primary);
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 13, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-text-light);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-light);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 31, 63, 0.4), rgba(0, 31, 63, 0.6)), url('https://images.unsplash.com/photo-1524704654690-b56c05c78a00?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    /* Offset for fixed header */
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats / Features - Glassmorphism */
.features {
    padding: var(--spacing-lg) 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(10, 26, 58, 0.9);
    border: 1px solid rgba(57, 204, 204, 0.1);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Products Preview */
.product-preview {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(57, 204, 204, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-fast);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 200px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

/* About Preview */
.about-preview {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-light);
    border-top: 1px solid rgba(57, 204, 204, 0.1);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

/* Footer */
footer {
    background-color: rgba(3, 13, 42, 0.98);
    border-top: 1px solid rgba(57, 204, 204, 0.15);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--color-secondary);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
}

/* Tablet & Mobile Styles */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    /* Header & Nav */
    nav {
        position: relative;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        /* Fixed to cover screen */
        top: 70px;
        /* Below header */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(3, 13, 42, 0.98);
        /* Dark glass */
        backdrop-filter: blur(10px);
        /* Glassmorphism */
        padding: 2rem 0;
        text-align: center;
        gap: 2rem;
        transform: translateY(-150%);
        /* Start hidden above */
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        /* Smooth eased animation */
        box-shadow: none;
        /* Removed simpler shadow */
        z-index: 999;
        opacity: 0;
        justify-content: center;
        /* Center items vertically */
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    /* Mobile Nav Items */
    .nav-links a {
        font-size: 1.5rem;
        /* Larger text */
        font-family: var(--font-heading);
        /* Serif for premium feel */
        color: var(--color-text-light);
        font-weight: 600;
        padding: 10px 0;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--color-secondary);
        letter-spacing: 1px;
    }

    .nav-links a.active {
        color: var(--color-secondary);
    }

    /* Hero */
    .hero {
        padding-top: 100px;
        height: auto;
        min-height: 80vh;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-home {
        height: 40vh;
        min-height: 300px;
        margin-top: 70px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Products */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on mobile is often better for products than 1 */
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* About Preview */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
        /* Image first on mobile */
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        /* Stack all footer cols */
        gap: 2rem;
        text-align: center;
    }

    .footer-col ul li {
        justify-content: center;
    }
}

/* Product Weight Style */
.product-weight {
    color: var(--color-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Scroll Animations */
/* Hero Variations */
.hero-small {
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    /* Offset for fixed header */
}

.hero-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.4);
    /* Overlay */
}

.hero-about {
    background-image: url('https://images.unsplash.com/photo-1524704654690-b56c05c78a00?q=80&w=2069');
}

.hero-products {
    background-image: url('https://images.unsplash.com/photo-1522069169874-c58ec4b76be5?q=80&w=2070');
}

.hero-contact {
    background-image: url('https://images.unsplash.com/photo-1522069169874-c58ec4b76be5?q=80&w=2070');
}

.hero-small .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        /* 1 column for very small screens */
    }

    .hero-home {
        height: 40vh;
        min-height: 300px;
        margin-top: 70px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        margin-left: 0 !important;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   HOMEPAGE NAVIGATION CARDS
   ============================================ */

/* Hero Home with Logo as Background */
.hero-home {
    height: 90vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero Home - Mobile responsive */
@media (max-width: 768px) {
    .hero-home {
        height: 40vh;
        min-height: 300px;
        margin-top: 70px;
        background-size: 140%;
        background-position: center;
        background-repeat: no-repeat;
        background-position-y: 10%;
    }
}

/* Dark overlay for better contrast if needed */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 13, 42, 0.3);
    pointer-events: none;
}

.hero-logo {
    position: relative;
    z-index: 1;
}

/* Navigation Logo Icon */
.nav-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Logo Icon */
.footer-logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    vertical-align: middle;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Hero Logo Image */
.hero-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-logo h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-logo .tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Logo in header with flex alignment */
.logo {
    display: flex;
    align-items: center;
}

/* Navigation Cards Section */
.nav-cards-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-dark) 100%);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.nav-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.nav-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(57, 204, 204, 0.15);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: 0 1 calc(20% - 1.5rem);
    min-width: 180px;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(57, 204, 204, 0.3);
}

.nav-card:hover::before {
    transform: scaleX(1);
}

.nav-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-card:hover .nav-card-icon {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2eb8b8 100%);
    transform: scale(1.1);
}

.nav-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.nav-card h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.nav-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Navigation Cards Responsive */
@media (max-width: 1024px) {
    .nav-card {
        flex: 0 1 calc(33.33% - 1.5rem);
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .hero-logo h1 {
        font-size: 2.5rem;
    }

    .hero-logo-icon {
        font-size: 3rem;
    }

    .nav-cards-section {
        margin-top: -30px;
        padding: 3rem 0;
    }

    .nav-cards-grid {
        gap: 1rem;
    }

    .nav-card {
        flex: 0 1 calc(50% - 0.5rem);
        min-width: 140px;
        padding: 1.5rem 1rem;
    }

    .nav-card-icon {
        width: 50px;
        height: 50px;
    }

    .nav-card-icon i {
        font-size: 1.2rem;
    }

    .nav-card h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-card {
        flex: 0 1 calc(50% - 0.5rem);
    }
}


/* ============================================
   ABOUT US PREVIEW SECTION
   ============================================ */

.about-preview-section {
    padding: 3rem 0;
    background: var(--color-bg-dark);
}

.about-preview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-preview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.about-preview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-preview-text .btn {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .about-preview-section {
        padding: 3rem 0;
    }

    .about-preview-text h2 {
        font-size: 2rem;
    }

    .about-preview-text p {
        font-size: 1rem;
    }
}

/* ============================================
   INFO SECTIONS (Packaging, Delivery, Orders)
   ============================================ */

.info-section {
    padding: 5rem 0;
    background: var(--color-bg-dark);
}

.info-section-alt {
    background: var(--color-bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(57, 204, 204, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.info-section-alt .info-card {
    background: var(--color-bg-card);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(57, 204, 204, 0.2);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.info-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-section {
        padding: 3rem 0;
    }
}

/* ============================================
   CUSTOMER REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #030d2a 0%, #0a1a3a 100%);
    border-top: 1px solid rgba(57, 204, 204, 0.1);
}

.reviews-section .section-header h2,
.reviews-section .section-header p {
    color: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    margin-bottom: 1rem;
}

.review-stars i {
    color: #FFD700;
    font-size: 1rem;
    margin-right: 2px;
}

.review-text {
    font-style: italic;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--color-primary-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reviews-section {
        padding: 3rem 0;
    }
}

/* ============================================
   PRODUCT BADGES & WEIGHT
   ============================================ */

.product-badge.freshwater {
    background: #2d9d78;
    top: 12px;
    left: 12px;
    right: auto;
}

.product-badge.saltwater {
    background: #0077be;
    top: 12px;
    left: 12px;
    right: auto;
}

.product-badge.home-delivery {
    background: linear-gradient(135deg, #e67e22, #d35400);
    top: auto;
    bottom: 12px;
    right: 12px;
    left: auto;
    font-size: 0.7rem;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-badge.home-delivery::before {
    content: "🚚";
    font-size: 0.75rem;
}

.product-badge.hotels-resto {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    top: auto;
    bottom: 12px;
    right: 12px;
    left: auto;
    font-size: 0.7rem;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-badge.hotels-resto::before {
    content: "🏨";
    font-size: 0.75rem;
}

.product-weight {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

/* Category Section Headers */
.category-header {
    display: flex;
    align-items: center;
    margin: 3rem 0 2rem;
    gap: 1rem;
}

.category-header h3 {
    font-size: 1.5rem;
    color: var(--color-text-light);
    white-space: nowrap;
}

.category-header::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), transparent);
}

.category-header.freshwater h3 {
    color: #2d9d78;
}

.category-header.saltwater h3 {
    color: #0077be;
}

.category-header.hotels-resto h3 {
    color: #9b59b6;
}

/* Footer WhatsApp Icon */
.footer-col ul li i.fa-whatsapp {
    color: #25D366;
}

/* ============================================
   FILTER BUTTONS (Products Page)
   ============================================ */

.filter-bar {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
}

/* All Button - Default (not active) */
.filter-all {
    background: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.filter-all:hover {
    background: var(--color-secondary);
    color: var(--color-bg-dark);
}

/* All Button - Active */
.filter-all.active {
    background: var(--color-secondary);
    color: var(--color-bg-dark);
    border-color: var(--color-secondary);
}

/* Freshwater Button - Default (not active) */
.filter-freshwater {
    background: transparent;
    color: #2d9d78;
    border-color: #2d9d78;
}

.filter-freshwater:hover {
    background: #2d9d78;
    color: white;
}

/* Freshwater Button - Active */
.filter-freshwater.active {
    background: #2d9d78;
    color: white;
    border-color: #2d9d78;
}

/* Saltwater Button - Default (not active) */
.filter-saltwater {
    background: transparent;
    color: #0077be;
    border-color: #0077be;
}

.filter-saltwater:hover {
    background: #0077be;
    color: white;
}

/* Saltwater Button - Active */
.filter-saltwater.active {
    background: #0077be;
    color: white;
    border-color: #0077be;
}

/* Hotels & Resto Button - Default (not active) */
.filter-hotels-resto {
    background: transparent;
    color: #9b59b6;
    border-color: #9b59b6;
}

.filter-hotels-resto:hover {
    background: #9b59b6;
    color: white;
}

/* Hotels & Resto Button - Active */
.filter-hotels-resto.active {
    background: #9b59b6;
    color: white;
    border-color: #9b59b6;
}

/* Responsive filter buttons */
@media (max-width: 480px) {
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ============================================
   DETAIL PAGES STYLES
   ============================================ */

/* Hero Detail Variant */
.hero-detail {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 13, 42, 0.85) 0%, rgba(10, 26, 58, 0.75) 100%);
}

.hero-detail .hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-secondary), #2d9d78);
    color: var(--color-bg-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge i {
    margin-right: 0.5rem;
}

.hero-detail h1 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-detail p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Detail Content Section */
.detail-content {
    padding: 4rem 0;
    background-color: var(--color-bg-dark);
}

.detail-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.detail-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.detail-intro p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Detail Features Grid */
.detail-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.detail-feature-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(57, 204, 204, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.detail-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(57, 204, 204, 0.3);
}

.feature-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--color-secondary), #2d9d78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-bg-dark);
}

.feature-icon-wrap.purple {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.feature-icon-wrap.green {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.feature-icon-wrap.orange {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

.feature-icon-wrap.cyan {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
}

.detail-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.detail-feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Detail Highlight Box */
.detail-highlight-box {
    background: linear-gradient(135deg, rgba(57, 204, 204, 0.1), rgba(45, 157, 120, 0.1));
    border: 1px solid rgba(57, 204, 204, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
}

.detail-highlight-box.business {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(142, 68, 173, 0.1));
    border-color: rgba(155, 89, 182, 0.25);
}

.detail-highlight-box.delivery {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.1));
    border-color: rgba(46, 204, 113, 0.25);
}

.detail-highlight-box.whatsapp-info {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(30, 180, 85, 0.1));
    border-color: rgba(37, 211, 102, 0.25);
    flex-direction: column;
    text-align: center;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--color-secondary), #2d9d78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-bg-dark);
}

.highlight-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.highlight-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.location-tag {
    background: rgba(57, 204, 204, 0.2);
    color: var(--color-secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.location-tag.purple {
    background: rgba(155, 89, 182, 0.2);
    color: #bb8fce;
}

.location-tag.orange {
    background: rgba(230, 126, 34, 0.2);
    color: #f0b27a;
}

.expanding-note {
    color: var(--color-accent);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Detail CTA */
.detail-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--color-bg-card), rgba(10, 26, 58, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(57, 204, 204, 0.15);
    margin-top: 3rem;
}

.detail-cta.business {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(142, 68, 173, 0.1));
}

.detail-cta.whatsapp-cta {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(30, 180, 85, 0.05));
}

.detail-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.detail-cta p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-whatsapp i {
    font-size: 1.25rem;
}

.phone-number {
    margin-top: 1rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Product Listing Section (Hotels & Restaurants) */
.product-listing-section {
    margin: 3rem 0;
}

.section-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.section-title i {
    margin-right: 0.75rem;
    color: var(--color-secondary);
}

.product-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-listing-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-listing-card.frozen {
    border-color: rgba(77, 166, 255, 0.3);
}

.product-listing-card.fresh {
    border-color: rgba(46, 204, 113, 0.3);
}

.listing-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.listing-header i {
    font-size: 1.25rem;
}

.product-listing-card.frozen .listing-header i,
.product-listing-card.frozen .listing-header h3 {
    color: #4da6ff;
}

.product-listing-card.fresh .listing-header i,
.product-listing-card.fresh .listing-header h3 {
    color: #2ecc71;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 2;
}

.product-list li.more-items {
    color: var(--color-text-muted);
    font-style: italic;
}

/* Benefits Section (Packaging Page) */
.benefits-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(57, 204, 204, 0.15);
}

.benefit-card.highlight {
    border-color: rgba(46, 204, 113, 0.3);
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), transparent);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.benefit-card.highlight .benefit-header {
    color: #2ecc71;
}

.benefit-header i {
    font-size: 1.5rem;
}

.benefit-header h3 {
    font-size: 1.25rem;
    margin: 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-list li i {
    color: #2ecc71;
    margin-top: 0.25rem;
}

.benefit-list li div strong {
    display: block;
    margin-bottom: 0.25rem;
}

.benefit-list li div span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Delivery Types Grid */
.delivery-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.delivery-type-card {
    background: var(--color-bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(57, 204, 204, 0.15);
    transition: all 0.3s ease;
}

.delivery-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.delivery-type-card.home {
    border-color: rgba(46, 204, 113, 0.3);
}

.delivery-type-card.business {
    border-color: rgba(155, 89, 182, 0.3);
}

.delivery-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.type-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.delivery-type-card.home .type-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.delivery-type-card.business .type-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.type-badge {
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-badge.free {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.type-badge.bulk {
    background: rgba(155, 89, 182, 0.2);
    color: #bb8fce;
}

.delivery-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-light);
}

.type-subtitle {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.delivery-locations h4 {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.location-item i {
    color: var(--color-secondary);
    font-size: 0.75rem;
}

.location-item.city i {
    color: #9b59b6;
}

.expanding-message {
    color: var(--color-accent);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Timing Section */
.timing-section {
    margin: 3rem 0;
    text-align: center;
}

.timing-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.timing-section h2 i {
    margin-right: 0.75rem;
    color: var(--color-secondary);
}

.timing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.timing-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(57, 204, 204, 0.15);
}

.timing-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.timing-icon.morning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.timing-icon.evening {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.timing-info h4 {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.timing-info .time {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.method-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Order Steps Section */
.order-steps-section {
    margin: 3rem 0;
}

.order-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.order-step {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(57, 204, 204, 0.15);
    transition: all 0.3s ease;
}

.order-step:hover {
    border-color: rgba(57, 204, 204, 0.3);
    transform: translateX(5px);
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--color-secondary), #2d9d78);
    color: var(--color-bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-light);
}

.step-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.step-icon {
    font-size: 1.75rem;
    color: var(--color-secondary);
}

/* Payment Section */
.payment-section {
    margin: 3rem 0;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.payment-option {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(57, 204, 204, 0.15);
    transition: all 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 204, 204, 0.3);
}

.payment-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.payment-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.payment-icon.upi {
    background: linear-gradient(135deg, #5f27cd, #341f97);
    color: white;
}

.payment-icon.cod {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.payment-option h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.payment-option p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* WhatsApp Benefits List */
.whatsapp-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.whatsapp-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.whatsapp-benefits li i {
    color: #25D366;
}

/* Detail Pages Responsive */
@media (max-width: 768px) {
    .hero-detail h1 {
        font-size: 2rem;
    }

    .hero-detail p {
        font-size: 1rem;
    }

    .detail-intro h2 {
        font-size: 1.75rem;
    }

    .detail-highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .location-tags {
        justify-content: center;
    }

    .expanding-note {
        justify-content: center;
    }

    .timing-card {
        padding: 1.5rem;
    }

    .order-step {
        flex-wrap: wrap;
    }

    .step-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .detail-content {
        padding: 2rem 0;
    }

    .detail-features-grid {
        grid-template-columns: 1fr;
    }

    .delivery-types-grid {
        grid-template-columns: 1fr;
    }

    .benefits-section {
        grid-template-columns: 1fr;
    }

    .timing-cards {
        flex-direction: column;
        align-items: center;
    }

    .btn-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}