/* =========================================
   CRAB — GLOBAL STYLES
========================================= */

:root {

    --primary: #FBB040;
    --black: #000000;
    --white: #FFFFFF;

    --dark: #111111;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-500: #777777;
    --gray-700: #333333;
    --container: 1180px;
    --radius: 18px;

}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--white);
    color: var(--black);
    line-height: 1.5;

}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================
   CONTAINER
========================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;

}


/* =========================================
   NAVIGATION
========================================= */

.navbar {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);

}

.nav-content {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 600;

}

.nav-links a {
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #FBB040;
}

.nav-button {
    background: var(--black);
    color: var(--white);
    padding: 11px 17px;
    border-radius: 8px;
    transform: translateY(-2px);

}
.menu-button {
    display: none;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

/* =========================================
   BUTTONS
========================================= */
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: var(--primary);
    color: var(--black);
    padding: 15px 20px;
    border-radius: 9px;
    font-weight: 800;
    border: 2px solid var(--black);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.primary-button:hover {
    transform: translateY(-2px);
    box-shadow:
        4px 4px 0 var(--black);
}
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border: 2px solid var(--black);
    border-radius: 9px;
    font-weight: 700;
    background: var(--white);
}

/* =========================================
   HERO
========================================= */

.hero {
    padding: 90px 0 110px;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns:
        1.05fr
        0.95fr;
    align-items: center;
    gap: 70px;
}
.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border: 1px solid var(--black);
    padding: 7px 10px;
    margin-bottom: 22px;
}
.hero h1 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -4px;
    max-width: 700px;
}
.hero h1 span {
    display: block;
    background: var(--primary);
    width: fit-content;
    padding: 0 7px 4px;
}
.hero-text {
    max-width: 560px;
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.65;
    color: var(--gray-700);
}
.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}
.hero-note {
    margin-top: 14px;
    font-size: 10px;
    color: var(--gray-500);
}
/* =========================================
   BUSINESS CARD
========================================= */

.hero-preview {
    display: flex;
    justify-content: center;
}
.profile-card {
    width: 100%;
    max-width: 430px;
    padding: 28px;
    border: 2px solid var(--black);
    border-radius: 22px;
    background: var(--white);
    box-shadow:
        12px 12px 0 var(--primary);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--black);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 17px;
}
.verified-badge {
    background: var(--gray-100);
    border-radius: 100px;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 700;
}

.profile-info {
    margin-top: 24px;
}

.profile-category {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gray-500);
}
.profile-info h2 {
    font-size: 29px;
    margin-top: 5px;
    letter-spacing: -1px;
}

.profile-location {
    margin-top: 5px;
    font-size: 13px;
    color: var(--gray-500);
}

.profile-description {
    margin-top: 15px;
    font-size: 14px;
    color: var(--gray-700);
}
.availability {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 11px 13px;
    background: #f7f7f7;
    font-size: 12px;
    font-weight: 700;
}
.status-dot {
    width: 8px;
    height: 8px;
    background: greenyellow;
    border-radius: 50%;
}

.products {
    margin-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 13px;
}

.product-row div {
    display: flex;
    flex-direction: column;
}

.product-row small {
    color: var(--gray-500);
    margin-top: 2px;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
}

.card-actions button {
    padding: 12px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}
.whatsapp-button {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}
.call-button {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
}
.business-link {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
    font-family: monospace;
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.business-link button {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 17px;
}


/* =========================================
   STATEMENT
========================================= */

.statement {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
}
.section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.statement h2 {
    margin-top: 22px;
    font-size: clamp(35px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    max-width: 900px;
}

.statement h2 span {
    color: var(--primary);
}


/* =========================================
   HOW IT WORKS
========================================= */

.how-it-works {
    padding: 110px 0;
}
.section-heading {
    max-width: 650px;
}
.section-heading h2 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -2.5px;
    margin-top: 20px;
}
.section-heading h2 span {
    background: var(--primary);
    padding: 0 6px;
}

.steps {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 20px;
    margin-top: 65px;
}
.step {
    padding: 28px;
    border: 1px solid #292929;
    border-radius: 18px;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}
.step:hover {
    background: #FBB040;
    border-color: #FBB040;
    transform: translateY(-6px);
    box-shadow: 8px 8px 0 #FFFFFF;
}
.step-number {
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 45px;
}
.step h3 {
    font-size: 21px;
    margin-bottom: 10px;
}
.step p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
}
/* =========================================
   BUSINESS SECTION
========================================= */

.business-section {
    background: var(--primary);
    padding: 100px 0;
}
.business-content {
    display: grid;
    grid-template-columns:
        1fr
        0.8fr;
    gap: 80px;
    align-items: center;
}
.business-content h2 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -2.5px;
    margin-top: 20px;
}
.business-content > div:first-child > p:not(.section-label) {
    max-width: 500px;
    margin: 25px 0;
    font-size: 17px;
    line-height: 1.6;
}

.business-example {
    background: var(--black);
    color: var(--white);
    padding: 30px;
    border-radius: 18px;
}
.example-line {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #333;
    font-size: 13px;
}

.example-line span {
    color: #999;
}

.available {
    color: var(--primary);
}

.example-link {
    margin-top: 25px;
    font-family: monospace;
    font-size: 12px;
}


/* =========================================
   FINAL CTA
========================================= */

.final-cta {
    text-align: center;
    padding: 120px 0;
}

.final-cta h2 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: -3px;
    margin: 18px auto;
    max-width: 800px;
}

.final-cta h2 span {
    background: var(--primary);
    padding: 0 7px;
}

.final-cta p:not(.section-label) {
    max-width: 500px;
    margin: 0 auto 30px;
    color: var(--gray-500);
}
/* =========================================
   CRAB FOOTER
========================================= */

.site-footer {
    background: #FFFFFF;
    color: #000000;
    padding: 75px 0 25px;
}
/* =========================================
   FOOTER TOP
========================================= */

.footer-top {
    display: grid;
    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr
        1.5fr;
    gap: 45px;
    padding-bottom: 65px;
}


/* =========================================
   FOOTER BRAND
========================================= */
.footer-brand {
    max-width: 290px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.footer-description {
    margin-top: 18px;
    max-width: 280px;
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   SOCIAL LINKS
========================================= */

.social-links {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}
.social-links a:hover {
    color: #FBB040;
    transform: translateY(-3px);
}
.social-links svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.social-links rect {
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
}

.social-links circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}


/* =========================================
   FOOTER COLUMNS
========================================= */
.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3,
.footer-newsletter h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 22px;
}

.footer-column a {
    color: #666666;
    font-size: 13px;
    margin-bottom: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #FBB040;
}


/* =========================================
   NEWSLETTER
========================================= */

.footer-newsletter {
    max-width: 320px;
}

.footer-newsletter p {
    color: #666666;
    font-size: 13px;
    line-height: 1.6;
    max-width: 270px;
    margin-bottom: 22px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    height: 52px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    overflow: hidden;
    background: #F8F8F8;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 15px;
    font-size: 13px;
    color: #000000;
}

.newsletter-form input::placeholder {
    color: #999999;
}

.newsletter-form button {
    width: 58px;
    border: none;
    background: #FBB040;
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.newsletter-form button:hover {
    background: #000000;
    color: #FBB040;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    border-top: 1px solid #E5E5E5;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #777777;
    font-size: 12px;
}

.made-with span {
    color: #FBB040;
    font-size: 16px;
    margin: 0 3px;
}
/* =========================================
   CRAB FOOTER
========================================= */

.site-footer {

    background: #FFFFFF;

    color: #000000;

    padding: 75px 0 25px;

}


/* =========================================
   FOOTER TOP
========================================= */

.footer-top {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr
        1.5fr;

    gap: 45px;

    padding-bottom: 65px;

}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {

    max-width: 290px;

}

.footer-logo {

    display: inline-flex;

    align-items: center;

}

.footer-logo img {

    width: 58px;

    height: 58px;

    object-fit: contain;

    display: block;

}

.footer-description {

    margin-top: 18px;

    max-width: 280px;

    color: #666666;

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================
   SOCIAL LINKS
========================================= */

.social-links {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 25px;

}

.social-links a {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #000000;

    transition:
        color 0.2s ease,
        transform 0.2s ease;

}

.social-links a:hover {

    color: #FBB040;

    transform: translateY(-3px);

}

.social-links svg {

    width: 23px;

    height: 23px;

    fill: currentColor;

}

.social-links rect {

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

}

.social-links circle {

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}

.footer-column h3,
.footer-newsletter h3 {

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 22px;

}

.footer-column a {

    color: #666666;

    font-size: 13px;

    margin-bottom: 14px;

    transition: color 0.2s ease;

}

.footer-column a:hover {

    color: #FBB040;

}


/* =========================================
   NEWSLETTER
========================================= */

.footer-newsletter {

    max-width: 320px;

}

.footer-newsletter p {

    color: #666666;

    font-size: 13px;

    line-height: 1.6;

    max-width: 270px;

    margin-bottom: 22px;

}

.newsletter-form {

    display: flex;

    width: 100%;

    height: 52px;

    border: 1px solid #DDDDDD;

    border-radius: 8px;

    overflow: hidden;

    background: #F8F8F8;

}

.newsletter-form input {

    flex: 1;

    min-width: 0;

    border: none;

    outline: none;

    background: transparent;

    padding: 0 15px;

    font-size: 13px;

    color: #000000;

}

.newsletter-form input::placeholder {

    color: #999999;

}

.newsletter-form button {

    width: 58px;

    border: none;

    background: #FBB040;

    color: #000000;

    font-size: 22px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}

.newsletter-form button:hover {

    background: #000000;

    color: #FBB040;

}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {

    border-top: 1px solid #E5E5E5;

    padding-top: 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}

.footer-bottom p {

    color: #777777;

    font-size: 12px;

}

.made-with span {

    color: #FBB040;

    font-size: 16px;

    margin: 0 3px;

}


/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .footer-top {
        grid-template-columns:
            1.5fr
            1fr
            1fr;
        row-gap: 50px;
    }
    .footer-newsletter {
        grid-column: span 2;
        max-width: 400px;
    }
}


@media (max-width: 700px) {
    .site-footer {
        padding: 60px 0 25px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-newsletter {
        grid-column: span 2;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-brand,
    .footer-newsletter {
        grid-column: span 1;
    }
}
/* =========================================
   HOMEPAGE RESPONSIVE
========================================= */


/* =========================================
   TABLET + SMALL LAPTOP
========================================= */

@media (max-width: 900px) {

    .nav-content {
    position: relative;
}

.nav-links {
    display: none;
}

.nav-links.mobile-nav-open {
    position: absolute;

    top: 68px;
    left: 0;
    right: 0;

    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 12px;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 12px;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.10);
}

.nav-links.mobile-nav-open a {
    width: 100%;

    padding: 14px 12px;

    border-radius: 8px;
}

.nav-links.mobile-nav-open a:hover {
    background: #f5f5f5;
}

.nav-links.mobile-nav-open .nav-button {
    margin-top: 6px;

    background: #000000;
    color: #ffffff;

    text-align: center;

    transform: none;
}

.menu-button {
    display: block;

    width: 42px;
    height: 42px;

    border-radius: 8px;
}


    /* HERO */

    .hero {
        padding: 65px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-content {
        width: 100%;
        max-width: 680px;
    }

    .hero h1 {
        font-size: clamp(
            48px,
            9vw,
            68px
        );

        line-height: 1;
        letter-spacing: -3px;
    }

    .hero-preview {
        width: 100%;
        justify-content: flex-start;
    }

    .profile-card {
        width: 100%;
        max-width: 520px;
    }


    /* HOW IT WORKS */

    .steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .step-number {
        margin-bottom: 30px;
    }


    /* BUSINESS SECTION */

    .business-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .business-example {
        max-width: 600px;
    }

}


/* =========================================
   PHONES
========================================= */

@media (max-width: 600px) {

    /* GLOBAL */

    .container {
        width: calc(100% - 32px);
    }


    /* NAVIGATION */

    .nav-content {
        height: 68px;
    }

    .logo img {
        width: 105px;
        height: 105px;
    }

    .menu-button {
        font-size: 23px;
    }


    /* HERO */

    .hero {
        padding: 45px 0 65px;
        overflow: hidden;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 45px;
    }

    .hero-content,
    .hero-preview {
        min-width: 0;
        width: 100%;
    }


    /* EYEBROW */

    .eyebrow {
        max-width: 100%;
        padding: 6px 8px;
        margin-bottom: 18px;

        font-size: 9px;
        line-height: 1.4;
        letter-spacing: 1px;

        white-space: normal;
    }


    /* HERO HEADING */

    .hero h1 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(
            37px,
            11vw,
            48px
        );

        line-height: 1;
        letter-spacing: -2px;

        overflow-wrap: normal;
        word-break: normal;
    }

    .hero h1 span {
        width: fit-content;
        max-width: 100%;

        padding:
            2px
            5px
            4px;
    }


    /* HERO TEXT */

    .hero-text {
        max-width: 100%;
        margin-top: 22px;

        font-size: 16px;
        line-height: 1.6;
    }


    /* HERO BUTTONS */

    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;

        margin-top: 26px;
    }

    .hero-buttons a {
        width: 100%;
    }

    .primary-button,
    .secondary-button {
        min-height: 52px;
        padding: 13px 16px;
    }

    .hero-note {
        line-height: 1.5;
    }


    /* HERO BUSINESS CARD */

    .hero-preview {
        padding-right: 7px;
    }

    .profile-card {
        width: 100%;
        max-width: 100%;

        padding: 20px;

        border-radius: 17px;

        box-shadow:
            7px
            7px
            0
            var(--primary);
    }

    .profile-avatar {
        width: 52px;
        height: 52px;
    }

    .profile-info h2 {
        font-size: 25px;
    }

    .card-actions {
        grid-template-columns: 1fr 1fr;
    }

    .business-link {
        gap: 10px;

        overflow-wrap: anywhere;
    }


    /* BLACK STATEMENT SECTION */

    .statement {
        padding: 70px 0;
    }

    .statement h2 {
        margin-top: 18px;

        font-size: clamp(
            32px,
            10vw,
            44px
        );

        line-height: 1.08;
        letter-spacing: -1.8px;
    }

    .statement h2 br {
        display: none;
    }


    /* HOW IT WORKS */

    .how-it-works {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: clamp(
            34px,
            10vw,
            44px
        );

        line-height: 1.05;
        letter-spacing: -1.8px;
    }

    .section-heading h2 span {
        display: inline;
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
    }

    .steps {
        margin-top: 45px;
    }

    .step {
        padding: 24px;
    }

    .step-number {
        margin-bottom: 28px;
    }


    /* BUSINESS SECTION */

    .business-section {
        padding: 70px 0;
    }

    .business-content {
        gap: 40px;
    }

    .business-content h2 {
        font-size: clamp(
            34px,
            10vw,
            44px
        );

        line-height: 1.05;
        letter-spacing: -1.8px;
    }

    .business-content > div:first-child > p:not(.section-label) {
        font-size: 15px;
    }

    .business-example {
        width: 100%;
        padding: 24px 20px;
    }

    .example-line {
        gap: 20px;
    }

    .example-link {
        overflow-wrap: anywhere;
    }


    /* FINAL CTA */

    .final-cta {
        padding: 75px 0;
    }

    .final-cta h2 {
        font-size: clamp(
            38px,
            11vw,
            50px
        );

        line-height: 1;
        letter-spacing: -2px;
    }

    .final-cta h2 span {
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
    }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .container {
        width: calc(100% - 26px);
    }


    .hero h1 {
        font-size: 38px;
        letter-spacing: -1.7px;
    }


    .hero-text {
        font-size: 15px;
    }


    .profile-card {
        padding: 17px;
    }


    .verified-badge {
        padding: 6px 8px;
        font-size: 10px;
    }


    .profile-info h2 {
        font-size: 23px;
    }


    .card-actions {
        grid-template-columns: 1fr;
    }


    .statement h2,
    .section-heading h2,
    .business-content h2 {
        font-size: 34px;
    }


    .final-cta h2 {
        font-size: 38px;
    }

}

/* =========================================
   PUBLIC BUSINESS PAGE
========================================= */

.public-header {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
}


.public-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}


.public-header span {
    color: #777777;
    font-size: 11px;
}


/* =========================================
   PAGE
========================================= */

.public-business-page {
    min-height: calc(100vh - 70px);
    background: #f7f7f7;
    padding: 60px 20px;
}


.public-business-card {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.08);
}

/* =========================================
   IDENTITY
========================================= */
.public-business-identity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 35px 0;
}
.public-business-avatar {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
}
.public-business-avatar img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}
.public-availability {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 30px;
    color: #555555;
    font-size: 10px;
    font-weight: 700;
}


.public-availability span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: greenyellow;
}
/* =========================================
   DETAILS
========================================= */
.public-business-details {
    padding: 30px 35px;
}
.public-category {
    color: #999999;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.public-business-details h1 {
    margin-top: 8px;
    font-size: 38px;
    letter-spacing: -1.5px;
    line-height: 1.05;
}
.public-description {
    max-width: 520px;
    margin-top: 15px;
    color: #666666;
    font-size: 13px;
    line-height: 1.7;
}
.public-location {
    margin-top: 20px;
    color: #555555;
    font-size: 11px;
}
/* =========================================
   PRODUCTS
========================================= */
.public-products {
    padding: 0 35px;
}
.public-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
}
.public-section-heading h2 {
    font-size: 15px;
}
.public-section-heading span {
    color: #999999;
    font-size: 10px;
}
.public-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid #eeeeee;
}
.public-item strong {
    font-size: 12px;
}
.public-item p {
    margin-top: 5px;
    color: #999999;
    font-size: 10px;
    line-height: 1.5;
}
.public-item > span {
    color: #000000;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}
/* =========================================
   CONTACT
========================================= */
.public-contact {
    padding: 30px 35px;
}
.public-whatsapp {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #000000;
    color: #ffffff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}
.public-whatsapp:hover {
    background: #FBB040;
    color: #000000;
    transform: translateY(-2px);
}
.public-whatsapp span {
    font-size: 18px;
}
/* =========================================
   FOOTER
========================================= */
.public-business-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 35px;
    background: #fafafa;
    border-top: 1px solid #eeeeee;
}
.public-business-footer div {
    display: flex;
    align-items: center;
    gap: 4px;
}
.public-business-footer span {
    color: #999999;
    font-size: 9px;
}
.public-business-footer strong {
    color: #000000;
    font-size: 10px;
}
.public-business-footer img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
/* =========================================
   MOBILE
========================================= */
@media (max-width: 600px) {
    .public-business-page {
        padding: 25px 12px;
    }
    .public-business-identity {
        padding:
            25px 20px 0;
    }
    .public-business-details {
        padding:
            25px 20px;
    }
    .public-business-details h1 {
        font-size: 31px;
    }
    .public-products {
        padding:
            0 20px;
    }
    .public-contact {
        padding:
            25px 20px;
    }
    .public-business-footer {
        padding:
            15px 20px;
    }
}
/* =========================================
   SHARE BUTTONS
========================================= */
.public-share {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}
.public-share button {
    height: 48px;
    border: 1px solid #eeeeee;
    background: #ffffff;
    color: #000000;
    border-radius: 8px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}
.public-share button:hover {
    background: #FBB040;
    color: #000000;
    border-color: #FBB040;
}
@media (max-width: 600px) {
    .public-share {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   PUBLIC BUSINESS SHARE
========================================= */
.public-share {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}
.public-share button {
    height: 48px;
    border: 1px solid #eeeeee;
    background: #ffffff;
    color: #000000;
    border-radius: 8px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}
.public-share button:hover {
    background: #FBB040;
    color: #000000;
    border-color: #FBB040;
}
/* =========================================
   MOBILE SHARE
========================================= */
@media (max-width: 600px) {
    .public-share {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CRAB DASHBOARD
========================================= */

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
}


.dashboard-logo img {
    width: 95px;
}


.dashboard-add-business {
    background: #fbb040;
    color: #000000;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 700;
}


.dashboard-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px;
}


.dashboard-intro {
    margin-bottom: 45px;
}


.dashboard-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fbb040;
}


.dashboard-intro h1 {
    font-size: 42px;
    margin: 10px 0;
}


.dashboard-intro p {
    color: #666666;
}


.dashboard-businesses {
    display: grid;
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(280px, 1fr)
        );
    gap: 24px;
}


.dashboard-business-card {
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    padding: 24px;
    background: #ffffff;
}


.dashboard-business-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}


.dashboard-business-avatar {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    overflow: hidden;
    background: #000000;
}


.dashboard-business-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.dashboard-status {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 50px;
    background: #f5f5f5;
}


.dashboard-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999999;
}


.dashboard-business-info h2 {
    margin: 7px 0 10px;
}


.dashboard-business-info > p {
    color: #666666;
    line-height: 1.5;
}


.dashboard-business-meta {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    font-size: 13px;
    color: #777777;
}


.dashboard-business-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}


.dashboard-business-actions button,
.dashboard-business-actions a {
    width: 100%;
    padding: 13px;
    border-radius: 9px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
}


.manage-business-button {
    border: none;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
}


.dashboard-business-actions a {
    border: 1px solid #dddddd;
    color: #000000;
    background: #ffffff;
}


.dashboard-empty {
    padding: 60px;
    border: 1px dashed #cccccc;
    border-radius: 18px;
    text-align: center;
}


.dashboard-empty a {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 22px;
    background: #fbb040;
    color: #000000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
}


@media (max-width: 600px) {

    .dashboard-page {
        padding: 45px 18px;
    }


    .dashboard-intro h1 {
        font-size: 32px;
    }


    .dashboard-header {
        padding: 18px;
    }


    .dashboard-add-business {
        padding: 11px 15px;
        font-size: 13px;
    }

}

/* =========================================
   BUSINESS MANAGER
========================================= */

.business-manager-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
}


.business-manager-logo img {
    width: 95px;
}


.back-dashboard {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}


.business-manager-page {
    max-width: 950px;
    margin: 0 auto;
    padding: 70px 24px 100px;
}


.business-manager-intro {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 45px;
}


.business-manager-eyebrow {
    color: #fbb040;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}


.business-manager-intro h1 {
    font-size: 44px;
    margin: 8px 0 10px;
}


.business-manager-intro > div > p:last-child {
    color: #666666;
}


.business-manager-status {
    background: #f5f5f5;
    border-radius: 50px;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 700;
}


.business-manager-card {
    border: 1px solid #e7e7e7;
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 20px;
    background: #ffffff;
}


.business-manager-card-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}


.business-manager-card-heading h2 {
    margin: 5px 0 0;
}


.business-manager-number {
    color: #fbb040;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


.business-manager-details {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 20px;
}


.business-manager-details > div {
    padding: 18px;
    background: #f8f8f8;
    border-radius: 12px;
}


.business-manager-details span {
    display: block;
    color: #888888;
    font-size: 12px;
    margin-bottom: 7px;
}


.business-manager-details strong {
    font-size: 14px;
}


.manager-item-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid #eeeeee;
}


.manager-item-row:first-child {
    border-top: none;
}


.manager-item-type {
    display: block;
    text-transform: uppercase;
    color: #fbb040;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 6px;
}


.manager-item-row p {
    color: #888888;
    font-size: 13px;
    margin: 6px 0 0;
}


.manager-item-price {
    white-space: nowrap;
}


.manager-empty-items {
    padding: 30px;
    background: #f8f8f8;
    border-radius: 12px;
    color: #777777;
    text-align: center;
}


.manager-link-box {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 18px;
    font-weight: 700;
}


.business-manager-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}


.manager-primary-button,
.manager-secondary-button {
    padding: 16px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}


.manager-primary-button {
    background: #000000;
    color: #ffffff;
}


.manager-secondary-button {
    background: #ffffff;
    color: #000000;
    border: 1px solid #dddddd;
}


@media (max-width: 650px) {

    .business-manager-page {
        padding: 45px 18px 80px;
    }


    .business-manager-intro {
        flex-direction: column;
    }


    .business-manager-intro h1 {
        font-size: 34px;
    }


    .business-manager-details {
        grid-template-columns: 1fr;
    }


    .business-manager-actions {
        grid-template-columns: 1fr;
    }


    .business-manager-header {
        padding: 18px;
    }

}

/* =========================================
   BUSINESS EDIT FORM
========================================= */

.manager-edit-button {
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #000000;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}


.manager-edit-button:hover {
    border-color: #fbb040;
}


.manager-edit-form {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #eeeeee;
}


.manager-edit-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 20px;
}


.manager-edit-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.manager-edit-full {
    grid-column: 1 / -1;
}


.manager-edit-field label {
    font-size: 13px;
    font-weight: 700;
}


.manager-edit-field input,
.manager-edit-field select,
.manager-edit-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dddddd;
    border-radius: 9px;
    padding: 13px;
    font: inherit;
    background: #ffffff;
}


.manager-edit-field input:focus,
.manager-edit-field select:focus,
.manager-edit-field textarea:focus {
    outline: none;
    border-color: #fbb040;
}


.manager-edit-field textarea {
    resize: vertical;
}


.manager-edit-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
}


.manager-cancel-button,
.manager-save-button {
    border-radius: 9px;
    padding: 13px 20px;
    font-weight: 700;
    cursor: pointer;
}


.manager-cancel-button {
    background: #ffffff;
    color: #000000;
    border: 1px solid #dddddd;
}


.manager-save-button {
    background: #000000;
    color: #ffffff;
    border: none;
}


@media (max-width: 650px) {

    .manager-edit-grid {
        grid-template-columns: 1fr;
    }


    .manager-edit-full {
        grid-column: auto;
    }


    .manager-edit-actions {
        flex-direction: column-reverse;
    }


    .manager-cancel-button,
    .manager-save-button {
        width: 100%;
    }

}

/* =========================================
   COPY CRAB LINK
========================================= */

.manager-link-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


.manager-link-box span {
    overflow: hidden;
    text-overflow: ellipsis;
}


.manager-copy-link-button {
    flex-shrink: 0;
    border: none;
    background: #000000;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}


.manager-copy-link-button:hover {
    background: #fbb040;
    color: #000000;
}


@media (max-width: 600px) {

    .manager-link-box {
        align-items: stretch;
        flex-direction: column;
    }


    .manager-copy-link-button {
        width: 100%;
    }

}

/* =========================================
   PUBLISH CONTROL
========================================= */

.manager-publish-button {
    padding: 16px;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    background: #ffffff;
    color: #000000;
    border: 1px solid #dddddd;
}


.manager-publish-button:hover {
    border-color: #fbb040;
}

/* =========================================
   DASHBOARD HEADER ACTIONS
========================================= */

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


.dashboard-logout {
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #000000;
    padding: 13px 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}


.dashboard-logout:hover {
    border-color: #fbb040;
}


@media (max-width: 600px) {

    .dashboard-header-actions {
        gap: 7px;
    }


    .dashboard-logout {
        padding: 11px 13px;
        font-size: 13px;
    }

}
/* =========================================
   DASHBOARD WELCOME
========================================= */

.dashboard-welcome {
    margin-top: 8px;
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================
   DASHBOARD EMPTY STATE
========================================= */

.dashboard-empty {
    max-width: 620px;
    margin: 30px auto;
    padding: 60px 30px;
    text-align: center;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    background: #ffffff;
}


.dashboard-empty-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fbb040;
    color: #000000;
    font-size: 30px;
    font-weight: 700;
}


.dashboard-empty h2 {
    margin-bottom: 10px;
    font-size: 24px;
}


.dashboard-empty p {
    max-width: 460px;
    margin: 0 auto 24px;
    color: #666666;
    line-height: 1.6;
}


.dashboard-empty-button {
    display: inline-block;
    padding: 14px 22px;
    background: #fbb040;
    color: #000000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
}

.dashboard-empty-button:hover {
    opacity: 0.85;
}

/* =========================================
   DASHBOARD BUSINESS CARD POLISH
========================================= */

.dashboard-status {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}


.dashboard-status-published {
    background: #f4f4f4;
    color: #222222;
}


.dashboard-status-draft {
    background: #fff4df;
    color: #7a4a00;
}


.dashboard-business-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}


.dashboard-business-meta span {
    padding: 6px 10px;
    background: #f7f7f7;
    border-radius: 8px;
    font-size: 12px;
    color: #555555;
}


.dashboard-business-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}


.dashboard-business-actions button,
.dashboard-business-actions a {
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}


.manage-business-button {
    background: #fbb040;
    color: #000000;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
}


.manage-business-button:hover {
    opacity: 0.85;
}


.dashboard-business-actions a {
    display: inline-flex;
    align-items: center;
    padding: 11px 17px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    color: #000000;
    background: #ffffff;
}


.dashboard-business-actions a:hover {
    border-color: #fbb040;
}

/* =========================================
   DASHBOARD — COMPLETE MOBILE RESPONSIVE FIX
========================================= */

@media (max-width: 600px) {

    /* HEADER */

    .dashboard-header {
        width: 100%;
        padding: 14px 16px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 12px;
    }


    .dashboard-logo {
        flex-shrink: 0;
    }


    .dashboard-logo img {
        display: block;
        width: 70px;
        height: auto;
    }


    .dashboard-header-actions {
        min-width: 0;

        display: flex;
        align-items: center;
        justify-content: flex-end;

        gap: 6px;
    }


    .dashboard-add-business {
        flex-shrink: 1;

        padding: 10px 11px;

        font-size: 11px;
        line-height: 1.2;

        text-align: center;

        white-space: nowrap;
    }


    .dashboard-logout {
        flex-shrink: 0;

        padding: 10px 11px;

        font-size: 11px;
        line-height: 1.2;

        white-space: nowrap;
    }



    /* PAGE */

    .dashboard-page {
        width: 100%;
        max-width: 100%;

        margin: 0;

        padding: 42px 16px 70px;
    }



    /* INTRO */

    .dashboard-intro {
        width: 100%;
        max-width: 100%;

        margin-bottom: 35px;
    }


    .dashboard-eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;
    }


    .dashboard-intro h1 {
        width: 100%;
        max-width: 100%;

        margin: 9px 0;

        font-size: clamp(
            30px,
            9vw,
            36px
        );

        line-height: 1.1;

        overflow-wrap: break-word;
    }


    .dashboard-welcome {
        width: 100%;
        max-width: 100%;

        font-size: 14px;
        line-height: 1.6;

        overflow-wrap: break-word;
    }



    /* BUSINESS GRID */

    .dashboard-businesses {
        width: 100%;
        max-width: 100%;

        display: grid;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 18px;
    }



    /* BUSINESS CARD */

    .dashboard-business-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;

        padding: 20px;

        border-radius: 15px;
    }


    .dashboard-business-top {
        width: 100%;

        gap: 15px;

        margin-bottom: 20px;
    }


    .dashboard-business-avatar {
        flex-shrink: 0;

        width: 52px;
        height: 52px;
    }


    .dashboard-status {
        flex-shrink: 0;

        font-size: 11px;

        padding: 6px 9px;
    }



    /* BUSINESS INFORMATION */

    .dashboard-business-info {
        min-width: 0;
        width: 100%;
    }


    .dashboard-category {
        font-size: 10px;

        overflow-wrap: anywhere;
    }


    .dashboard-business-info h2 {
        width: 100%;

        margin: 7px 0 9px;

        font-size: 22px;
        line-height: 1.2;

        overflow-wrap: anywhere;
    }


    .dashboard-business-info > p {
        width: 100%;

        font-size: 14px;
        line-height: 1.6;

        overflow-wrap: anywhere;
    }



    /* META */

    .dashboard-business-meta {
        width: 100%;

        display: flex;
        flex-wrap: wrap;

        gap: 7px;

        margin-top: 16px;
    }


    .dashboard-business-meta span {
        max-width: 100%;

        padding: 6px 9px;

        font-size: 11px;

        overflow-wrap: anywhere;
    }



    /* ACTIONS */

    .dashboard-business-actions {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 9px;

        margin-top: 20px;
    }


    .dashboard-business-actions button,
    .dashboard-business-actions a {
        width: 100%;
        max-width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 12px;

        text-align: center;

        box-sizing: border-box;
    }



    /* EMPTY DASHBOARD */

    .dashboard-empty {
        width: 100%;
        max-width: 100%;

        margin: 10px 0;

        padding: 45px 20px;
    }


    .dashboard-empty h2 {
        font-size: 22px;
    }


    .dashboard-empty p {
        width: 100%;
        max-width: 100%;

        font-size: 14px;
    }

}

/* =========================================
   BUILD 13G
   PUBLIC BUSINESS PAGE POLISH
========================================= */


/* =========================================
   PUBLIC HEADER
========================================= */

.public-header {
    height: 72px;

    padding:
        0
        max(
            24px,
            calc((100% - 760px) / 2)
        );

    background: #ffffff;

    border-bottom:
        1px solid #eeeeee;
}


.public-logo img {
    width: 105px;
    height: 105px;
}


.public-header > span {
    font-size: 11px;
    font-weight: 600;
    color: #888888;
}



/* =========================================
   PAGE BACKGROUND
========================================= */

.public-business-page {
    min-height:
        calc(100vh - 72px);

    padding: 50px 20px 80px;

    background: #f6f6f6;
}



/* =========================================
   BUSINESS CARD
========================================= */

.public-business-card {
    width: 100%;
    max-width: 760px;

    margin: 0 auto;

    border:
        1px solid
        #eeeeee;

    border-radius: 20px;

    background: #ffffff;

    overflow: hidden;

    box-shadow:
        0
        20px
        60px
        rgba(0, 0, 0, 0.06);
}



/* =========================================
   BUSINESS IDENTITY
========================================= */

.public-business-identity {
    padding:
        38px
        40px
        0;

    gap: 20px;
}


.public-business-avatar {
    width: 68px;
    height: 68px;

    flex-shrink: 0;

    border-radius: 16px;
}


.public-business-avatar img {
    width: 48px;
    height: 48px;
}


.public-availability {
    flex-shrink: 0;

    padding:
        8px
        12px;

    font-size: 10px;

    background: #f6f6f6;

    border:
        1px solid
        #eeeeee;
}



/* =========================================
   BUSINESS DETAILS
========================================= */

.public-business-details {
    padding:
        28px
        40px
        32px;
}


.public-category {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #999999;

    overflow-wrap: anywhere;
}


.public-business-details h1 {
    max-width: 100%;

    margin-top: 8px;

    font-size:
        clamp(
            34px,
            5vw,
            46px
        );

    line-height: 1;

    letter-spacing: -2px;

    overflow-wrap: anywhere;
}


.public-description {
    max-width: 580px;

    margin-top: 16px;

    font-size: 14px;

    line-height: 1.7;

    color: #666666;

    overflow-wrap: anywhere;
}


.public-location {
    display: inline-flex;

    margin-top: 22px;

    padding:
        8px
        11px;

    border-radius: 8px;

    background: #f7f7f7;

    color: #555555;

    font-size: 11px;

    overflow-wrap: anywhere;
}



/* =========================================
   PRODUCTS / SERVICES
========================================= */

.public-products {
    padding:
        0
        40px;
}


.public-section-heading {
    padding:
        0
        0
        14px;

    border-bottom:
        1px solid
        #eeeeee;
}


.public-section-heading h2 {
    font-size: 17px;
}


.public-section-heading span {
    font-size: 10px;

    color: #999999;
}


.public-item {
    min-width: 0;

    padding:
        20px
        0;

    gap: 25px;

    border-top: none;

    border-bottom:
        1px solid
        #eeeeee;
}


.public-item > div {
    min-width: 0;
}


.public-item strong {
    display: block;

    font-size: 14px;

    line-height: 1.4;

    overflow-wrap: anywhere;
}


.public-item p {
    max-width: 480px;

    margin-top: 6px;

    font-size: 11px;

    line-height: 1.6;

    color: #888888;

    overflow-wrap: anywhere;
}


.public-item > span {
    flex-shrink: 0;

    font-size: 14px;

    font-weight: 800;
}



/* =========================================
   CONTACT
========================================= */

.public-contact {
    padding:
        32px
        40px
        38px;
}


.public-whatsapp {
    width: 100%;

    min-height: 56px;

    border-radius: 10px;

    font-size: 13px;

    letter-spacing: 0.1px;
}


.public-whatsapp span {
    font-size: 19px;
}


.public-share {
    grid-template-columns:
        1fr
        1fr;

    gap: 10px;

    margin-top: 10px;
}


.public-share button {
    min-height: 50px;

    border:
        1px solid
        #dddddd;

    border-radius: 9px;

    font-size: 11px;
}



/* =========================================
   CRAB BRANDING
========================================= */

.public-business-footer {
    min-height: 70px;

    padding:
        14px
        40px;

    background: #fafafa;

    border-top:
        1px solid
        #eeeeee;
}


.public-business-footer div {
    min-width: 0;
}


.public-business-footer span {
    font-size: 9px;

    color: #999999;
}


.public-business-footer strong {
    font-size: 10px;
}


.public-business-footer img {
    width: 58px;
    height: 58px;

    flex-shrink: 0;
}



/* =========================================
   PUBLIC BUSINESS — MOBILE
========================================= */

@media (max-width: 600px) {

    .public-header {
        height: 64px;

        padding:
            0
            16px;
    }


    .public-logo img {
        width: 88px;
        height: 88px;
    }


    .public-header > span {
        font-size: 9px;
    }



    .public-business-page {
        padding:
            18px
            10px
            35px;
    }



    .public-business-card {
        max-width: 100%;

        border-radius: 16px;

        box-shadow: none;
    }



    .public-business-identity {
        padding:
            22px
            18px
            0;
    }


    .public-business-avatar {
        width: 58px;
        height: 58px;

        border-radius: 13px;
    }


    .public-business-avatar img {
        width: 42px;
        height: 42px;
    }


    .public-availability {
        padding:
            7px
            9px;

        font-size: 9px;
    }



    .public-business-details {
        padding:
            22px
            18px
            25px;
    }


    .public-category {
        font-size: 9px;
    }


    .public-business-details h1 {
        font-size:
            clamp(
                28px,
                9vw,
                34px
            );

        line-height: 1.05;

        letter-spacing: -1.4px;
    }


    .public-description {
        margin-top: 12px;

        font-size: 12px;

        line-height: 1.6;
    }


    .public-location {
        margin-top: 17px;

        padding:
            7px
            9px;

        font-size: 10px;
    }



    .public-products {
        padding:
            0
            18px;
    }


    .public-section-heading h2 {
        font-size: 15px;
    }


    .public-item {
        align-items: flex-start;

        gap: 15px;

        padding:
            17px
            0;
    }


    .public-item strong {
        font-size: 12px;
    }


    .public-item p {
        font-size: 10px;
    }


    .public-item > span {
        font-size: 12px;
    }



    .public-contact {
        padding:
            25px
            18px
            28px;
    }


    .public-whatsapp {
        min-height: 52px;

        font-size: 12px;
    }


    .public-share {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .public-share button {
        min-height: 46px;
    }



    .public-business-footer {
        min-height: 62px;

        padding:
            12px
            18px;

        gap: 12px;
    }


    .public-business-footer img {
        width: 48px;
        height: 48px;
    }

}



/* =========================================
   VERY SMALL PUBLIC BUSINESS PAGE
========================================= */

@media (max-width: 380px) {

    .public-business-page {
        padding-left: 8px;
        padding-right: 8px;
    }


    .public-business-identity,
    .public-business-details,
    .public-products,
    .public-contact {
        padding-left: 15px;
        padding-right: 15px;
    }


    .public-business-details h1 {
        font-size: 28px;
    }


    .public-item {
        gap: 10px;
    }

}

/* =========================================
   BUILD 13G.1
   PUBLISH SUCCESS PAGE
========================================= */

.publish-success-header {
    width: 100%;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    background: #ffffff;

    border-bottom:
        1px solid #eeeeee;
}


.publish-success-logo img {
    display: block;

    width: 95px;
    height: auto;
}


.publish-dashboard-link {
    padding: 10px 15px;

    border:
        1px solid
        #dddddd;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}


.publish-dashboard-link:hover {
    border-color: #fbb040;
}



/* =========================================
   PAGE
========================================= */

.publish-success-page {
    min-height:
        calc(100vh - 72px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 20px;

    background: #f7f7f7;
}



/* =========================================
   SUCCESS CARD
========================================= */

.publish-success-card {
    width: 100%;
    max-width: 620px;

    padding: 55px;

    background: #ffffff;

    border:
        1px solid
        #eeeeee;

    border-radius: 20px;

    box-shadow:
        0
        20px
        60px
        rgba(0, 0, 0, 0.06);
}


.publish-success-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 50%;

    background: #fbb040;

    color: #000000;

    font-size: 27px;
    font-weight: 900;
}


.publish-success-eyebrow {
    color: #fbb040;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.7px;
}


.publish-success-card h1 {
    margin-top: 10px;

    font-size:
        clamp(
            38px,
            6vw,
            54px
        );

    line-height: 1;

    letter-spacing: -2.5px;
}


.publish-success-message {
    max-width: 470px;

    margin-top: 18px;

    color: #666666;

    font-size: 15px;
    line-height: 1.7;
}



/* =========================================
   LINK
========================================= */

.publish-success-link-box {
    margin-top: 32px;

    padding: 18px;

    background: #f7f7f7;

    border-radius: 10px;
}


.publish-success-link-box span {
    display: block;

    margin-bottom: 7px;

    color: #999999;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}


.publish-success-link-box strong {
    display: block;

    font-size: 13px;

    overflow-wrap: anywhere;
}



/* =========================================
   ACTIONS
========================================= */

.publish-success-actions {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 10px;

    margin-top: 25px;
}


.publish-success-primary,
.publish-success-secondary,
.publish-success-dashboard {
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 16px;

    border-radius: 9px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 800;

    text-align: center;

    cursor: pointer;
}


.publish-success-primary {
    gap: 14px;

    grid-column:
        1 / -1;

    background: #000000;

    color: #ffffff;
}


.publish-success-secondary {
    border:
        1px solid
        #dddddd;

    background: #ffffff;

    color: #000000;
}


.publish-success-dashboard {
    border:
        1px solid
        #fbb040;

    background: #fbb040;

    color: #000000;
}


.publish-success-primary:hover {
    background: #fbb040;
    color: #000000;
}


.publish-success-secondary:hover {
    border-color: #fbb040;
}


.publish-success-dashboard:hover {
    opacity: 0.85;
}


.publish-success-note {
    margin-top: 24px;

    color: #999999;

    font-size: 11px;
    line-height: 1.6;
}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .publish-success-header {
        height: 64px;

        padding:
            0
            16px;
    }


    .publish-success-logo img {
        width: 75px;
    }


    .publish-dashboard-link {
        padding:
            8px
            11px;

        font-size: 11px;
    }


    .publish-success-page {
        min-height:
            calc(100vh - 64px);

        padding:
            25px
            12px;
    }


    .publish-success-card {
        max-width: 100%;

        padding:
            35px
            22px;

        border-radius: 16px;

        box-shadow: none;
    }


    .publish-success-icon {
        width: 54px;
        height: 54px;

        margin-bottom: 22px;

        font-size: 23px;
    }


    .publish-success-card h1 {
        font-size:
            clamp(
                34px,
                10vw,
                42px
            );

        letter-spacing: -2px;
    }


    .publish-success-message {
        font-size: 14px;
    }


    .publish-success-actions {
        grid-template-columns: 1fr;
    }


    .publish-success-primary {
        grid-column: auto;
    }


    .publish-success-primary,
    .publish-success-secondary,
    .publish-success-dashboard {
        width: 100%;
    }

}

/* =========================================
   CRAB HOMEPAGE
   FINAL RESPONSIVE SAFETY FIX
========================================= */


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .hero {
        padding: 65px 0 80px;
        overflow: visible;
    }


    .hero-grid {
        width: min(
            calc(100% - 40px),
            var(--container)
        );

        grid-template-columns:
            minmax(0, 1fr);

        gap: 55px;
    }


    .hero-content {
        width: 100%;
        min-width: 0;
        max-width: 680px;
    }


    .hero h1 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(
            46px,
            8vw,
            68px
        );

        line-height: 1;
        letter-spacing: -3px;
    }


    .hero h1 span {
        width: fit-content;
        max-width: 100%;
    }


    .hero-text {
        width: 100%;
        max-width: 560px;
    }


    .hero-preview {
        width: 100%;
        min-width: 0;

        justify-content: flex-start;
    }


    .profile-card {
        width: 100%;
        max-width: 520px;
    }

}



/* =========================================
   PHONES
========================================= */

@media (max-width: 600px) {

    /* CONTAINER */

    .container {
        width: calc(100% - 32px);
        max-width: 100%;
    }



    /* HERO */

    .hero {
        width: 100%;

        padding:
            45px
            0
            65px;

        overflow: visible;
    }


    .hero-grid {
        width: calc(100% - 32px);
        max-width: 100%;

        margin:
            0
            auto;

        display: grid;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 45px;
    }


    .hero-content {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }



    /* EYEBROW */

    .eyebrow {
        display: inline-block;

        width: auto;
        max-width: 100%;

        margin-bottom: 18px;

        padding:
            6px
            8px;

        font-size: 8px;
        line-height: 1.4;
        letter-spacing: 0.8px;

        white-space: normal;

        overflow-wrap: break-word;
    }



    /* HEADING */

    .hero h1 {
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-size: clamp(
            36px,
            10.5vw,
            46px
        );

        line-height: 1;

        letter-spacing: -1.8px;

        overflow-wrap: normal;
        word-break: normal;
    }


    .hero h1 span {
        display: inline;

        width: auto;
        max-width: 100%;

        padding:
            1px
            4px
            3px;

        background: var(--primary);

        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
    }



    /* DESCRIPTION */

    .hero-text {
        width: 100%;
        max-width: 100%;

        margin-top: 22px;

        font-size: 15px;
        line-height: 1.6;

        overflow-wrap: break-word;
    }



    /* BUTTONS */

    .hero-buttons {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 10px;

        margin-top: 26px;
    }


    .hero-buttons .primary-button,
    .hero-buttons .secondary-button {
        width: 100%;
        max-width: 100%;

        min-height: 52px;

        padding:
            13px
            16px;

        box-sizing: border-box;
    }



    /* NOTE */

    .hero-note {
        width: 100%;
        max-width: 100%;

        margin-top: 14px;

        line-height: 1.5;

        overflow-wrap: break-word;
    }



    /* BUSINESS CARD */

    .hero-preview {
        width: 100%;
        min-width: 0;

        padding-right: 7px;

        justify-content: flex-start;
    }


    .profile-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;

        padding: 20px;

        border-radius: 17px;

        box-shadow:
            7px
            7px
            0
            var(--primary);
    }

}



/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .container {
        width: calc(100% - 26px);
    }


    .hero-grid {
        width: calc(100% - 26px);
    }


    .eyebrow {
        font-size: 7.5px;
        letter-spacing: 0.6px;
    }


    .hero h1 {
        font-size: 36px;

        line-height: 1;

        letter-spacing: -1.5px;
    }


    .hero-text {
        font-size: 14px;
    }


    .profile-card {
        padding: 17px;
    }

}