/* =========================================================
   FISHMART — CUSTOMER WEBSITE
   PROFESSIONAL MAIN STYLE SHEET
   FIXED HEADER VERSION 2.0
========================================================= */


/* =========================================================
   1. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 145px;
}

body {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background: #f7f9fc;
    color: #172033;
    line-height: 1.6;

    /* IMPORTANT:
       Horizontal scroll band rahega nahi.
       Vertical page scroll normal rahega. */
    overflow-x: hidden;
    overflow-y: auto;
}

body,
button,
input,
textarea,
select {
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    cursor: pointer;
}

input,
textarea,
select {
    outline: none;
}

img {
    display: block;
    max-width: 100%;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   2. ROOT VARIABLES
========================================================= */

:root {

    --primary: #075985;
    --primary-dark: #064568;
    --primary-light: #eaf7fb;

    --secondary: #0f766e;
    --secondary-light: #e8f7f4;

    --accent: #16a34a;
    --accent-light: #dcfce7;

    --danger: #ef4444;
    --warning: #f59e0b;

    --text: #172033;
    --text-dark: #101828;
    --muted: #667085;
    --muted-light: #98a2b3;

    --white: #ffffff;
    --light: #f7f9fc;
    --light-blue: #eff8fc;

    --border: #e5eaf0;
    --border-dark: #d6dde6;

    --shadow-sm:
        0 4px 15px rgba(15, 23, 42, 0.06);

    --shadow-md:
        0 12px 30px rgba(15, 23, 42, 0.09);

    --shadow-lg:
        0 20px 50px rgba(15, 23, 42, 0.14);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 30px;

    --container: 1240px;

    /* Desktop header heights */
    --topbar-height: 36px;
    --header-height: 82px;
    --nav-height: 52px;

    /* Total fixed header height */
    --desktop-header-total:
        calc(
            var(--topbar-height) +
            var(--header-height) +
            var(--nav-height)
        );
}


/* =========================================================
   3. COMMON CONTAINER
========================================================= */

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}


/* =========================================================
   4. FIXED HEADER SYSTEM
========================================================= */

/*
   IMPORTANT

   Header ke 3 parts:

   1. .top-bar
   2. .main-header
   3. .main-nav

   In tino ko ek saath .sticky-header ke andar
   FIXED rakha gaya hai.

   Isliye scroll karne par poora header screen ke
   top par fixed rahega.
*/

.sticky-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    z-index: 10000;

    background: var(--white);

    box-shadow:
        0 5px 25px rgba(15, 23, 42, 0.08);

    /*
       Fixed header ke andar hi teen sections hain.
       Isliye individual sticky ki zarurat nahi.
    */

    isolation: isolate;
}


/* Header ke neeche page ko jagah */

main {
    /*
       Desktop:
       36px top bar
       + 82px main header
       + 52px nav
       = 170px
    */

    padding-top: var(--desktop-header-total);
}


/* =========================================================
   5. SECTIONS
========================================================= */

.section {
    padding: 72px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.section-label {
    display: block;
    margin-bottom: 7px;

    color: var(--secondary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.section-heading h2 {
    color: var(--text-dark);

    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;

    letter-spacing: -0.6px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition: 0.2s ease;
}

.view-all:hover {
    color: var(--primary-dark);
    gap: 11px;
}


/* =========================================================
   6. BUTTONS
========================================================= */

.btn {
    min-height: 50px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);

    box-shadow:
        0 10px 22px rgba(7, 89, 133, 0.20);
}

.btn-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow:
        0 14px 28px rgba(7, 89, 133, 0.24);
}

.btn-light {
    background: var(--white);
    color: var(--text);

    border: 1px solid var(--border);
}

.btn-light:hover {
    color: var(--primary);

    border-color: #b9dce9;

    transform: translateY(-2px);

    box-shadow: var(--shadow-sm);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


/* =========================================================
   7. TOP OFFER BAR
========================================================= */

.top-bar {

    height: var(--topbar-height);

    background:
        linear-gradient(
            90deg,
            #063b58,
            #075985
        );

    color: var(--white);

    font-size: 12px;
}

.top-bar-content {

    height: var(--topbar-height);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-bar i {
    color: #7dd3fc;
}

.top-offer {
    opacity: 0.92;
}


/* =========================================================
   8. MAIN HEADER
========================================================= */

/*
   IMPORTANT:
   No position: sticky here.
   Parent .sticky-header is fixed.
*/

.main-header {

    position: relative;

    width: 100%;

    height: var(--header-height);

    background:
        rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-content {

    height: var(--header-height);

    display: flex;
    align-items: center;

    gap: 28px;
}


/* =========================================================
   9. BRAND / LOGO
========================================================= */

.brand {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    gap: 10px;
}

.brand-logo {

    width: 55px;
    height: 55px;

    object-fit: contain;

    border-radius: 12px;
}

.brand-text {

    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.brand-text strong {

    color: var(--primary);

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 0.5px;
}

.brand-text small {

    margin-top: 5px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 600;
}


/* =========================================================
   10. HEADER SEARCH
========================================================= */

.header-search {

    flex: 1;

    max-width: 560px;
    height: 46px;

    display: flex;
    align-items: center;

    background: #f4f7fa;

    border: 1px solid var(--border);

    border-radius: 12px;

    overflow: hidden;

    transition: 0.2s ease;
}

.header-search:focus-within {

    background: var(--white);

    border-color: #8fc9dc;

    box-shadow:
        0 0 0 3px rgba(7, 89, 133, 0.08);
}

.header-search > i {

    flex-shrink: 0;

    margin-left: 15px;

    color: var(--muted);

    font-size: 14px;
}

.header-search input {

    flex: 1;

    min-width: 0;
    height: 100%;

    padding: 0 12px;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--text);

    font-size: 13px;
}

.header-search input::placeholder {
    color: #98a2b3;
}

.header-search button {

    height: 100%;

    padding: 0 19px;

    background: var(--primary);

    color: var(--white);

    font-size: 13px;
    font-weight: 700;

    transition: 0.2s ease;
}

.header-search button:hover {
    background: var(--primary-dark);
}


/* =========================================================
   11. HEADER ACTIONS
========================================================= */

.header-actions {

    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 18px;
}

.header-action {

    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--text);

    font-size: 13px;
    font-weight: 700;

    transition: 0.2s ease;
}

.header-action:hover {
    color: var(--primary);
}

.header-action > i {

    color: var(--primary);

    font-size: 19px;
}

.header-action span {

    display: flex;
    flex-direction: column;

    line-height: 1.2;
}

.header-action small {

    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 500;
}


/* =========================================================
   12. CART BUTTON
========================================================= */

.cart-button {

    position: relative;

    min-width: 65px;
    height: 44px;

    padding: 0 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    background: var(--primary);
    color: var(--white);

    border-radius: 11px;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 7px 16px rgba(7, 89, 133, 0.18);

    transition: 0.2s ease;
}

.cart-button:hover {

    background: var(--primary-dark);

    transform: translateY(-1px);
}

.cart-button b {

    position: absolute;

    top: -7px;
    right: -7px;

    min-width: 20px;
    height: 20px;

    padding: 0 4px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--danger);
    color: var(--white);

    border: 2px solid var(--white);

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   13. MAIN NAVIGATION
========================================================= */

/*
   IMPORTANT:
   No sticky.
   No fixed.
   Parent .sticky-header handles everything.
*/

.main-nav {

    position: relative;

    width: 100%;

    height: var(--nav-height);

    background: rgba(255, 255, 255, 0.99);

    border-bottom: 1px solid var(--border);

    box-shadow:
        0 3px 12px rgba(15, 23, 42, 0.035);
}

.nav-content {

    height: var(--nav-height);

    display: flex;
    align-items: center;
}


/* Category */

.category-menu {

    display: flex;
    align-items: center;

    gap: 9px;

    padding-right: 25px;

    background: transparent;

    color: var(--text);

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

.category-menu > i:first-child {
    color: var(--primary);
}

.category-menu i:last-child {

    color: var(--muted);

    font-size: 9px;
}


/* Nav links */

.nav-links {

    display: flex;
    align-items: center;

    gap: 26px;

    height: 100%;
}

.nav-links a {

    position: relative;

    display: flex;
    align-items: center;

    height: var(--nav-height);

    color: #475467;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;

    transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 2px;

    background: var(--primary);

    border-radius: 2px 2px 0 0;
}


/* Delivery */

.delivery-info {

    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 8px;

    white-space: nowrap;
}

.delivery-info > i {

    color: var(--accent);

    font-size: 18px;
}

.delivery-info div {

    display: flex;
    flex-direction: column;

    line-height: 1.2;
}

.delivery-info small {

    color: var(--muted);

    font-size: 9px;
}

.delivery-info strong {

    color: var(--text);

    font-size: 12px;
}


/* =========================================================
   14. HERO SECTION
========================================================= */

.hero-section {

    padding: 58px 0 72px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(14, 165, 233, 0.13),
            transparent 35%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(16, 185, 129, 0.06),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #eff8fc 0%,
            #f8fbfd 100%
        );
}

.hero-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.9fr);

    align-items: center;

    gap: 60px;
}

.hero-content {

    max-width: 620px;
}

.hero-badge {

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    border: 1px solid #cde9f4;

    border-radius: 100px;

    background: var(--white);

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--secondary);
}

.hero-content h1 {

    margin-top: 18px;

    max-width: 650px;

    color: var(--text-dark);

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.02;

    letter-spacing: -2.5px;
}

.hero-content h1 span {

    display: block;

    color: var(--primary);
}

.hero-content > p {

    max-width: 570px;

    margin: 22px 0 28px;

    color: var(--muted);

    font-size: 16px;
}

.hero-buttons {

    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.hero-features {

    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 28px;

    color: #475467;

    font-size: 12px;
    font-weight: 600;
}

.hero-features div {

    display: flex;
    align-items: center;

    gap: 7px;
}

.hero-features i {
    color: var(--accent);
}


/* =========================================================
   15. HERO IMAGE
========================================================= */

.hero-image {
    position: relative;
}

.hero-image > img {

    width: 100%;
    min-height: 420px;

    object-fit: cover;

    border-radius: var(--radius-xl);

    box-shadow: var(--shadow-lg);

    border: 1px solid rgba(255,255,255,0.8);
}

.hero-floating-card {

    position: absolute;

    left: 22px;
    bottom: 22px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    background:
        rgba(255,255,255,0.96);

    border: 1px solid rgba(255,255,255,0.85);

    border-radius: 15px;

    box-shadow: var(--shadow-md);

    backdrop-filter: blur(10px);
}

.floating-icon {

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: var(--accent-light);

    color: var(--accent);
}

.hero-floating-card div:last-child {

    display: flex;
    flex-direction: column;

    line-height: 1.2;
}

.hero-floating-card strong {

    color: var(--text);

    font-size: 13px;
}

.hero-floating-card span {

    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   16. CATEGORY SECTION
========================================================= */

.category-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.category-card {

    padding: 22px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    text-align: center;

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border 0.25s ease;
}

.category-card:hover {

    transform: translateY(-5px);

    border-color: #b9dce9;

    box-shadow: var(--shadow-md);
}

.category-image {

    width: 72px;
    height: 72px;

    margin: 0 auto 14px;

    display: grid;
    place-items: center;

    border-radius: 20px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 28px;
}

.category-card h3 {

    color: var(--text);

    font-size: 16px;
}

.category-card span {

    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   17. SERVICE SECTION
========================================================= */

.service-section {

    padding: 25px 0 65px;
}

.service-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}

.service-card {

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 17px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition: 0.2s ease;
}

.service-card:hover {

    border-color: #c8dce6;

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);
}

.service-icon {

    flex-shrink: 0;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--secondary-light);

    color: var(--secondary);
}

.service-card h3 {

    color: var(--text);

    font-size: 13px;
}

.service-card p {

    margin-top: 2px;

    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   18. PRODUCTS
========================================================= */

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.product-card {

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}

.product-image {

    position: relative;

    height: 210px;

    background: #eef3f6;

    overflow: hidden;
}

.product-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.35s ease;
}

.product-card:hover .product-image img {

    transform: scale(1.05);
}

.product-badge {

    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 2;

    padding: 5px 9px;

    border-radius: 7px;

    background: var(--white);

    color: var(--accent);

    font-size: 10px;
    font-weight: 800;

    box-shadow: var(--shadow-sm);
}

.product-info {

    padding: 16px;
}

.product-category {

    color: var(--secondary);

    font-size: 10px;
    font-weight: 700;
}

.product-info h3 {

    margin-top: 4px;

    color: var(--text);

    font-size: 17px;
}

.product-description {

    min-height: 40px;

    margin-top: 5px;

    color: var(--muted);

    font-size: 11px;
}

.product-bottom {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: 13px;
}

.product-price {

    display: flex;
    align-items: baseline;

    gap: 3px;
}

.product-price strong {

    color: var(--text-dark);

    font-size: 19px;
}

.product-price span {

    color: var(--muted);

    font-size: 10px;
}

.add-cart {

    height: 38px;

    padding: 0 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border: 0;

    border-radius: 9px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    transition: 0.2s ease;
}

.add-cart:hover {

    background: var(--primary);

    color: var(--white);

    transform: translateY(-1px);
}


/* =========================================================
   19. DELIVERY BANNER
========================================================= */

.delivery-banner {

    padding: 55px 0;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: var(--white);
}

.delivery-banner-inner {

    display: flex;
    align-items: center;

    gap: 20px;
}

.delivery-banner-icon {

    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 18px;

    background: rgba(255,255,255,0.14);

    font-size: 26px;
}

.delivery-banner-inner > div:nth-child(2) {
    flex: 1;
}

.delivery-banner-inner span {

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.3px;

    opacity: 0.8;
}

.delivery-banner-inner h2 {

    margin-top: 4px;

    font-size: 28px;

    line-height: 1.25;
}

.delivery-banner-inner p {

    margin-top: 4px;

    opacity: 0.8;

    font-size: 12px;
}


/* =========================================================
   20. FOOTER
========================================================= */

.footer {

    background: #071b2a;

    color: var(--white);
}

.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.3fr;

    gap: 45px;

    padding: 60px 0;
}

.footer-logo .brand-text strong {
    color: var(--white);
}

.footer-logo .brand-text small {
    color: #94a3b8;
}

.footer-brand > p {

    max-width: 340px;

    margin-top: 18px;

    color: #94a3b8;

    font-size: 12px;
}

.social-links {

    display: flex;

    gap: 9px;

    margin-top: 20px;
}

.social-links a {

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        rgba(255,255,255,0.08);

    color: var(--white);

    transition: 0.2s ease;
}

.social-links a:hover {

    background: var(--primary);

    transform: translateY(-2px);
}

.footer-column {

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {

    margin-bottom: 5px;

    color: var(--white);

    font-size: 14px;
}

.footer-column a,
.footer-column p {

    color: #94a3b8;

    font-size: 11px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column p {

    display: flex;
    align-items: flex-start;

    gap: 8px;
}

.footer-column p i {

    margin-top: 4px;

    color: #7dd3fc;
}

.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {

    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #64748b;

    font-size: 10px;
}


/* =========================================================
   21. MOBILE BOTTOM NAV
========================================================= */

.mobile-bottom-nav {
    display: none;
}


/* =========================================================
   22. TABLET
========================================================= */

@media (max-width: 1100px) {

    .header-content {
        gap: 16px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-action span {
        display: none;
    }

    .nav-links {
        gap: 16px;
    }

    .category-menu {
        padding-right: 16px;
    }

    .hero-grid {
        gap: 35px;
    }

    .category-grid,
    .service-grid,
    .product-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-grid {

        grid-template-columns:
            1.5fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   23. SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .header-content {
        gap: 12px;
    }

    .brand-text small {
        display: none;
    }

    .header-search {
        max-width: 420px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .delivery-info {
        display: none;
    }

    .hero-grid {

        grid-template-columns:
            1fr 0.85fr;

        gap: 28px;
    }

    .hero-content h1 {
        font-size: 50px;
    }
}


/* =========================================================
   24. MOBILE
========================================================= */

@media (max-width: 760px) {

    html {
        scroll-padding-top: 120px;
    }

    body {

        padding-bottom: 68px;

        font-size: 14px;
    }


    /* -----------------------------------------
       MOBILE FIXED HEADER HEIGHT
    ----------------------------------------- */

    /*
       Mobile:

       Top bar = 32px
       Header = approximately 111px

       Main nav hidden.

       Total = 143px
    */

    .sticky-header {

        position: fixed;

        top: 0;
        left: 0;
        right: 0;

        width: 100%;

        z-index: 10000;
    }

    .top-bar {

        height: 32px;
    }

    .top-bar-content {

        height: 32px;

        min-height: 32px;

        justify-content: center;

        text-align: center;
    }

    .top-offer {
        display: none !important;
    }

    .top-bar {
        font-size: 10px;
    }


    /* -----------------------------------------
       MOBILE MAIN HEADER
    ----------------------------------------- */

    .main-header {

        position: relative;

        height: 111px;

        min-height: 111px;
    }

    .header-content {

        height: 111px;

        min-height: 111px;

        display: flex;
        flex-wrap: wrap;

        align-content: center;

        padding: 8px 0;

        gap: 7px;
    }

    .brand {

        gap: 8px;
    }

    .brand-logo {

        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text small {
        display: block;
        font-size: 7px;
    }

    .header-actions {

        margin-left: auto;

        gap: 7px;
    }

    .header-action {
        display: none;
    }

    .cart-button {

        min-width: 50px;
        height: 42px;

        padding: 0 11px;

        border-radius: 10px;
    }

    .cart-button span {
        display: none;
    }


    /* -----------------------------------------
       MOBILE SEARCH
    ----------------------------------------- */

    .header-search {

        order: 5;

        flex-basis: 100%;

        max-width: none;

        width: 100%;

        height: 43px;

        margin-top: 1px;
    }

    .header-search > i {
        margin-left: 12px;
    }

    .header-search input {
        font-size: 12px;
    }

    .header-search button {

        padding: 0 14px;

        font-size: 11px;
    }


    /* -----------------------------------------
       MOBILE NAV HIDDEN
    ----------------------------------------- */

    .main-nav {
        display: none;
    }


    /* -----------------------------------------
       MAIN TOP SPACE
    ----------------------------------------- */

    main {

        /*
           Mobile:
           32px top bar
           + 111px header
           = 143px
        */

        padding-top: 143px;
    }


    /* -----------------------------------------
       HERO
    ----------------------------------------- */

    .hero-section {

        padding: 32px 0 45px;
    }

    .hero-grid {

        grid-template-columns: 1fr;

        gap: 28px;
    }

    .hero-content {
        max-width: none;
    }

    .hero-badge {

        padding: 7px 10px;

        font-size: 10px;
    }

    .hero-content h1 {

        margin-top: 15px;

        font-size: 43px;

        letter-spacing: -1.8px;
    }

    .hero-content > p {

        margin: 18px 0 23px;

        font-size: 13px;

        line-height: 1.65;
    }

    .hero-buttons {

        display: grid;

        grid-template-columns: 1fr;

        gap: 9px;
    }

    .btn {

        width: 100%;

        min-height: 48px;

        font-size: 13px;
    }

    .hero-features {

        flex-direction: column;

        gap: 9px;

        margin-top: 22px;

        font-size: 11px;
    }

    .hero-image > img {

        min-height: 260px;

        border-radius: 20px;
    }

    .hero-floating-card {

        left: 12px;
        bottom: 12px;

        padding: 10px 12px;

        border-radius: 13px;
    }

    .floating-icon {

        width: 34px;
        height: 34px;
    }

    .hero-floating-card strong {
        font-size: 11px;
    }

    .hero-floating-card span {
        font-size: 9px;
    }


    /* -----------------------------------------
       SECTION HEADING
    ----------------------------------------- */

    .section-heading {

        align-items: flex-start;

        margin-bottom: 22px;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .section-label {
        font-size: 10px;
    }

    .view-all {
        font-size: 10px;
    }


    /* -----------------------------------------
       CATEGORY
    ----------------------------------------- */

    .category-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .category-card {

        padding: 15px 10px;
    }

    .category-image {

        width: 58px;
        height: 58px;

        margin-bottom: 10px;

        border-radius: 16px;

        font-size: 23px;
    }

    .category-card h3 {
        font-size: 13px;
    }

    .category-card span {
        font-size: 9px;
    }


    /* -----------------------------------------
       SERVICES
    ----------------------------------------- */

    .service-section {

        padding: 20px 0 45px;
    }

    .service-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .service-card {

        padding: 12px;

        gap: 9px;

        min-height: 70px;
    }

    .service-icon {

        width: 36px;
        height: 36px;

        border-radius: 10px;

        font-size: 13px;
    }

    .service-card h3 {
        font-size: 10px;
    }

    .service-card p {
        font-size: 8px;
    }


    /* -----------------------------------------
       PRODUCTS
    ----------------------------------------- */

    .product-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .product-image {
        height: 145px;
    }

    .product-badge {

        top: 8px;
        left: 8px;

        padding: 4px 7px;

        font-size: 8px;
    }

    .product-info {
        padding: 11px;
    }

    .product-category {
        font-size: 8px;
    }

    .product-info h3 {
        font-size: 14px;
    }

    .product-description {

        min-height: 32px;

        font-size: 9px;

        line-height: 1.45;
    }

    .product-bottom {

        margin-top: 10px;
    }

    .product-price strong {
        font-size: 15px;
    }

    .product-price span {
        font-size: 8px;
    }

    .add-cart {

        width: 34px;
        height: 34px;

        padding: 0;

        justify-content: center;

        font-size: 0;
    }

    .add-cart i {
        font-size: 12px;
    }


    /* -----------------------------------------
       DELIVERY BANNER
    ----------------------------------------- */

    .delivery-banner {

        padding: 38px 0;
    }

    .delivery-banner-inner {

        align-items: flex-start;

        flex-wrap: wrap;

        gap: 14px;
    }

    .delivery-banner-icon {

        width: 55px;
        height: 55px;

        border-radius: 15px;

        font-size: 21px;
    }

    .delivery-banner-inner > div:nth-child(2) {

        flex:
            1 1 calc(100% - 70px);
    }

    .delivery-banner-inner span {
        font-size: 8px;
    }

    .delivery-banner-inner h2 {
        font-size: 21px;
    }

    .delivery-banner-inner p {
        font-size: 9px;
    }

    .delivery-banner-inner .btn {

        margin-left: 69px;

        width:
            calc(100% - 69px);
    }


    /* -----------------------------------------
       FOOTER
    ----------------------------------------- */

    .footer-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 30px 20px;

        padding: 45px 0;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand > p {
        font-size: 10px;
    }

    .footer-column h3 {
        font-size: 12px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 9px;
    }

    .footer-bottom-inner {

        min-height: auto;

        padding: 15px 0;

        flex-direction: column;

        text-align: center;

        gap: 5px;

        font-size: 8px;
    }


    /* -----------------------------------------
       MOBILE BOTTOM NAV
    ----------------------------------------- */

    .mobile-bottom-nav {

        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 99999;

        height: 64px;

        display: grid;

        grid-template-columns:
            repeat(5, 1fr);

        background:
            rgba(255,255,255,0.98);

        border-top:
            1px solid var(--border);

        box-shadow:
            0 -5px 20px rgba(15,23,42,0.08);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .mobile-bottom-nav a {

        position: relative;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 3px;

        color: #667085;

        font-size: 9px;
        font-weight: 600;
    }

    .mobile-bottom-nav a i {

        font-size: 17px;

        transition: 0.2s ease;
    }

    .mobile-bottom-nav a.active {

        color: var(--primary);
    }

    .mobile-bottom-nav a.active i {

        transform:
            translateY(-1px);
    }

    .mobile-cart b {

        position: absolute;

        top: 7px;
        left: 50%;

        margin-left: 7px;

        min-width: 16px;
        height: 16px;

        padding: 0 3px;

        display: grid;
        place-items: center;

        border-radius: 50%;

        background: var(--danger);
        color: var(--white);

        border: 1px solid var(--white);

        font-size: 8px;
    }
}


/* =========================================================
   25. SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-content > p {
        font-size: 12px;
    }

    .category-grid,
    .product-grid {
        gap: 8px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 135px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text small {
        font-size: 6px;
    }
}


/* =========================================================
   26. EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 340px) {

    .container {
        width: calc(100% - 16px);
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .header-search button {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .category-card {
        padding: 12px 7px;
    }

    .product-info {
        padding: 9px;
    }

    .product-info h3 {
        font-size: 12px;
    }

    .mobile-bottom-nav {
        height: 62px;
    }
}


/* =========================================================
   27. ACCESSIBILITY
========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible {

    outline:
        3px solid rgba(7, 89, 133, 0.25);

    outline-offset: 2px;
}


/* =========================================================
   28. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }
}


/* =========================================================
   FISHMART CSS COMPLETE
   FIXED HEADER SYSTEM ACTIVE
========================================================= */