/*
 * ArchiPrint 3D — Professional storefront system
 * Loaded after style.css so the existing PHP features remain compatible.
 * Typography: Inter. Theme: white, charcoal, restrained magenta and plum.
 */

:root {
    --font-main: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --ink: #17141b;
    --ink-2: #28232d;
    --muted: #6e6874;
    --line: #e9e5eb;
    --soft: #f8f6f9;
    --soft-2: #f2eef4;
    --white: #ffffff;
    --pink: #b41678;
    --pink-2: #cf1d8e;
    --purple: #6d2e82;
    --violet: #46245c;
    --deep: #17101e;
    --accent: linear-gradient(135deg, #c91d88 0%, #7b2c8d 58%, #4c2868 100%);
    --accent-soft: linear-gradient(135deg, rgba(201, 29, 136, .08), rgba(76, 40, 104, .07));
    --shadow: 0 26px 70px rgba(31, 18, 38, .10);
    --shadow-sm: 0 12px 34px rgba(31, 18, 38, .07);
    --page-pad: clamp(16px, 4vw, 76px);
    --header-h: 78px;
    --content-width: 1640px;
}

html {
    scroll-padding-top: calc(var(--header-h) + 20px);
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-main);
}

body {
    background: #ffffff;
    color: var(--ink);
}

.container {
    width: 100%;
    max-width: var(--content-width);
    margin-inline: auto;
    padding-inline: var(--page-pad);
}

.site-announcement,
.search-overlay,
.mobile-drawer,
.mobile-menu-button {
    display: none !important;
}

/* Header */
.professional-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(228, 223, 231, .86);
    box-shadow: 0 8px 30px rgba(31, 18, 38, .045);
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.professional-navbar {
    min-height: var(--header-h);
    display: grid;
    grid-template-columns: auto auto minmax(260px, 420px) auto;
    align-items: center;
    gap: clamp(18px, 2.2vw, 38px);
}

.professional-brand .brand-logo {
    width: 42px;
    height: 48px;
}

.professional-brand .brand-copy strong {
    font-size: 17px;
    letter-spacing: .015em;
}

.professional-brand .brand-copy small {
    margin-top: 5px;
    color: var(--pink);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .16em;
}

.desktop-primary-nav {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    gap: clamp(16px, 1.6vw, 28px);
}

.desktop-primary-nav a {
    position: relative;
    min-height: var(--header-h);
    display: inline-flex;
    align-items: center;
    color: #3e3942;
    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
}

.desktop-primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--accent);
    transition: right .22s ease;
}

.desktop-primary-nav a:hover,
.desktop-primary-nav a.active {
    color: var(--purple);
}

.desktop-primary-nav a:hover::after,
.desktop-primary-nav a.active::after {
    right: 0;
}

.desktop-header-search {
    position: relative;
    min-width: 0;
    height: 46px;
    display: grid;
    grid-template-columns: 1fr 42px;
    align-items: center;
    border: 1px solid #ded9e1;
    border-radius: 14px;
    background: rgba(250, 249, 251, .92);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.desktop-header-search:focus-within {
    border-color: rgba(109, 46, 130, .58);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(109, 46, 130, .08);
}

.desktop-header-search input {
    min-width: 0;
    height: 44px;
    padding: 0 8px 0 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 12px;
}

.desktop-header-search > button {
    width: 36px;
    height: 36px;
    margin-right: 4px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 11px;
    background: var(--accent);
    color: #ffffff;
    cursor: pointer;
}

.desktop-header-search .search-suggestions {
    top: calc(100% + 10px);
}

.desktop-nav-actions,
.mobile-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}

.mobile-header-actions {
    display: none;
}

.header-icon-button,
.header-cart-button {
    position: relative;
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: #332e37;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.header-icon-button:hover,
.header-icon-button.active,
.header-cart-button:hover,
.header-cart-button.active {
    border-color: var(--line);
    background: var(--soft);
    color: var(--purple);
}

.header-cart-button {
    min-width: auto;
    padding: 0 14px;
    border-color: var(--line);
    font-size: 12px;
    font-weight: 700;
}

.header-icon-button b,
.header-cart-button b {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: var(--pink);
    color: #ffffff;
    font-size: 8px;
}

.mobile-search-panel {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
}

.mobile-search-panel[hidden] {
    display: none;
}

.mobile-search-panel .container {
    padding-top: 10px;
    padding-bottom: 12px;
}

.mobile-search-panel form {
    height: 46px;
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    padding-left: 12px;
    border: 1px solid #ded9e1;
    border-radius: 13px;
    background: var(--soft);
}

.mobile-search-panel svg {
    color: var(--muted);
}

.mobile-search-panel input {
    min-width: 0;
    height: 44px;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 13px;
}

.mobile-search-panel button {
    height: 36px;
    margin-right: 4px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: var(--accent);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

/* Hero */
.professional-hero {
    padding: clamp(16px, 3vw, 34px) 0 0;
    background: #ffffff;
}

.professional-hero-shell {
    position: relative;
    isolation: isolate;
    min-height: clamp(570px, 70vh, 760px);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr);
    align-items: end;
    border: 1px solid rgba(109, 46, 130, .12);
    border-radius: clamp(24px, 3vw, 36px);
    background: var(--hero-background) center / cover no-repeat;
    box-shadow: 0 30px 80px rgba(29, 15, 37, .11);
}

.professional-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .90) 0%, rgba(255, 255, 255, .70) 45%, rgba(255, 255, 255, .25) 72%, rgba(255, 255, 255, .08) 100%),
        linear-gradient(135deg, rgba(201, 29, 136, .04), rgba(76, 40, 104, .10));
}

.professional-hero-content {
    align-self: center;
    padding: clamp(24px, 5vw, 76px);
}

.hero-glass-panel {
    width: min(760px, 100%);
    padding: clamp(28px, 4vw, 54px);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: clamp(22px, 2.6vw, 30px);
    background: rgba(255, 255, 255, .52);
    box-shadow:
        0 30px 65px rgba(29, 15, 37, .12),
        inset 0 1px 0 rgba(255, 255, 255, .86);
    backdrop-filter: blur(24px) saturate(135%);
    -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero-label::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
}

.hero-glass-panel h1 {
    max-width: 720px;
    margin: 18px 0 20px;
    color: var(--ink);
    font-size: clamp(48px, 5.8vw, 88px);
    font-weight: 750;
    line-height: .98;
    letter-spacing: -.055em;
}

.hero-glass-panel h1 span {
    display: block;
    margin-top: 6px;
    background: var(--accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-glass-panel > p {
    max-width: 620px;
    margin: 0;
    color: #554f59;
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.75;
}

.hero-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-action-row .btn {
    min-height: 52px;
    padding-inline: 23px;
    border-radius: 13px;
}

.hero-secondary-button {
    border: 1px solid rgba(64, 45, 70, .25);
    background: rgba(255, 255, 255, .52);
    color: var(--ink);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-secondary-button:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.hero-assurance-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(75, 56, 81, .12);
}

.hero-assurance-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #47414b;
    font-size: 11px;
    font-weight: 650;
}

.hero-assurance-row svg {
    color: var(--pink);
}

.hero-info-card {
    width: min(330px, calc(100% - 36px));
    margin: 0 30px 30px auto;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 20px;
    background: rgba(22, 15, 28, .68);
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(25, 10, 34, .20);
    backdrop-filter: blur(20px) saturate(125%);
    -webkit-backdrop-filter: blur(20px) saturate(125%);
}

.hero-info-card span,
.hero-info-card strong {
    display: block;
}

.hero-info-card span {
    color: rgba(255, 255, 255, .64);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-info-card strong {
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.4;
}

.hero-info-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #f49bd0;
    font-size: 11px;
    font-weight: 750;
}

/* Sections */
.section {
    padding: clamp(72px, 8vw, 118px) 0;
}

.professional-section-head {
    margin-bottom: clamp(32px, 4vw, 54px);
}

.professional-section-head h2 {
    max-width: 820px;
    margin-top: 10px;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 720;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.centered-section-head {
    justify-content: center;
    text-align: center;
}

.centered-section-head .eyebrow {
    justify-content: center;
}

.home-category-section {
    background: #ffffff;
}

.professional-category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(16px, 1.8vw, 26px);
}

.professional-category-card {
    min-height: 310px;
    border-radius: 22px;
    border-color: var(--line);
    box-shadow: 0 14px 36px rgba(31, 18, 38, .045);
}

.professional-category-card img {
    height: 220px;
    object-fit: contain;
    padding: 20px;
    background: linear-gradient(145deg, #fbfafc, #f2eef4);
}

.professional-category-card .category-card-content {
    padding: 19px;
}

.professional-category-card h3 {
    font-size: 15px;
    font-weight: 700;
}

.professional-category-card span {
    font-size: 10px;
}

.featured-home-section {
    background: var(--soft);
}

.product-grid,
.professional-product-grid,
.shop-layout > div > .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 2.2vw, 34px);
}

.product-card {
    border-color: var(--line);
    border-radius: 22px;
    box-shadow: 0 14px 38px rgba(31, 18, 38, .05);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(31, 18, 38, .10);
}

.product-media {
    aspect-ratio: 1.08 / 1;
    background: linear-gradient(145deg, #fbfafc, #f1edf3);
}

.product-media img {
    object-fit: contain;
    padding: clamp(12px, 1.3vw, 22px);
}

.product-info {
    padding: clamp(16px, 1.7vw, 24px);
}

.product-info h3 {
    min-height: 44px;
    font-size: 16px;
    font-weight: 700;
}

.product-short {
    min-height: 42px;
    font-size: 11px;
    line-height: 1.6;
}

.price-row strong {
    font-size: 19px;
}

.product-actions {
    gap: 9px;
    padding-top: 17px;
}

.product-actions .btn {
    min-height: 42px;
}

.professional-services-section {
    background: #ffffff;
}

.professional-service-panel {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: clamp(34px, 6vw, 82px);
    padding: clamp(34px, 5vw, 70px);
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 14%, rgba(201, 29, 136, .20), transparent 30%),
        linear-gradient(135deg, #17121d, #24152d 60%, #36163e);
    color: #ffffff;
}

.service-introduction .eyebrow {
    color: #f19acb;
}

.service-introduction h2 {
    max-width: 680px;
    margin: 12px 0 18px;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.service-introduction p {
    max-width: 620px;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    line-height: 1.75;
}

.service-card-list {
    display: grid;
    gap: 13px;
}

.service-card-list article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 17px;
    background: rgba(255, 255, 255, .06);
}

.service-card-list article > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(255, 255, 255, .10);
    color: #f39aca;
    font-size: 10px;
    font-weight: 800;
}

.service-card-list h3 {
    margin: 0;
    font-size: 16px;
}

.service-card-list p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .60);
    font-size: 11px;
    line-height: 1.6;
}

.process-home-section {
    background: #ffffff;
}

.professional-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 28px);
}

.professional-process-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(31, 18, 38, .04);
}

.professional-process-grid article > span {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--pink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.professional-process-grid h3 {
    margin: 0 0 9px;
    font-size: 17px;
}

.professional-process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.professional-newsletter {
    border-radius: 28px;
    background: var(--accent);
}

.professional-newsletter h2 {
    font-size: clamp(32px, 3.5vw, 54px);
    font-weight: 700;
    letter-spacing: -.035em;
}

/* Footer */
.professional-footer {
    position: relative;
    padding-top: clamp(52px, 6vw, 78px);
    background: #151219;
    color: #ffffff;
}

.professional-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--accent);
}

.professional-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr 1fr;
    gap: clamp(34px, 6vw, 86px);
    padding-bottom: 48px;
}

.footer-brand-block p {
    max-width: 460px;
    margin: 20px 0 0;
    color: #aaa5ae;
    font-size: 12px;
    line-height: 1.75;
}

.footer-navigation-block,
.footer-support-block {
    display: flex;
    flex-direction: column;
}

.professional-footer h4 {
    margin: 0 0 16px;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.footer-link-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.footer-link-list a,
.footer-support-block a,
.footer-support-block p,
.footer-support-block small {
    color: #aaa5ae;
    font-size: 11px;
}

.footer-support-block a,
.footer-support-block p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 6px 0;
}

.footer-support-block small {
    margin-top: 12px;
}

.professional-footer a:hover {
    color: #ffffff;
}

.professional-footer-bottom {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #2c2830;
    color: #817c85;
    font-size: 9px;
}

.professional-footer-bottom strong {
    color: #c7c2ca;
    font-weight: 600;
}

/* Mobile navigation */
.professional-mobile-nav {
    display: none;
}

.back-to-top {
    border-radius: 13px;
    background: var(--accent);
}

/* Existing pages */
.page-hero h1,
.product-summary h1,
.auth-card h1,
.admin-topbar h1,
.about-copy h2,
.section-head h2,
.newsletter h2 {
    font-family: var(--font-main);
}

.shop-layout {
    gap: clamp(28px, 3vw, 50px);
}

.filters,
.summary-card,
.panel-card,
.auth-card,
.account-nav,
.admin-form,
.admin-table-wrap {
    border-color: var(--line);
    box-shadow: 0 14px 38px rgba(31, 18, 38, .045);
}

.form-control:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(109, 46, 130, .10);
}

/* Responsive */
@media (max-width: 1360px) {
    .professional-navbar {
        grid-template-columns: auto 1fr minmax(230px, 330px) auto;
        gap: 18px;
    }

    .desktop-primary-nav {
        gap: 16px;
    }
}

@media (max-width: 1120px) {
    .professional-navbar {
        grid-template-columns: auto minmax(220px, 1fr) auto;
    }

    .desktop-primary-nav {
        display: none;
    }

    .professional-hero-shell,
    .professional-service-panel {
        grid-template-columns: 1fr;
    }

    .hero-info-card {
        margin: 0 30px 30px 30px;
    }

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

    .product-grid,
    .professional-product-grid,
    .shop-layout > div > .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .professional-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    :root {
        --header-h: 64px;
        --page-pad: 15px;
    }

    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }

    .professional-navbar {
        min-height: var(--header-h);
        grid-template-columns: 1fr auto;
        gap: 10px;
    }

    .professional-brand .brand-logo {
        width: 35px;
        height: 40px;
    }

    .professional-brand .brand-copy strong {
        font-size: 14px;
    }

    .professional-brand .brand-copy small {
        display: none;
    }

    .desktop-primary-nav,
    .desktop-header-search,
    .desktop-nav-actions {
        display: none;
    }

    .mobile-header-actions {
        display: flex;
        gap: 3px;
    }

    .mobile-header-actions .header-icon-button {
        min-width: 38px;
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .professional-hero {
        padding-top: 12px;
    }

    .professional-hero-shell {
        min-height: 600px;
        grid-template-columns: 1fr;
        align-items: end;
        border-radius: 22px;
        background-position: 64% center;
    }

    .professional-hero-overlay {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .48) 0%, rgba(255, 255, 255, .76) 47%, rgba(255, 255, 255, .91) 100%),
            linear-gradient(135deg, rgba(201, 29, 136, .04), rgba(76, 40, 104, .10));
    }

    .professional-hero-content {
        align-self: end;
        padding: 18px;
    }

    .hero-glass-panel {
        padding: 26px 21px;
        border-radius: 20px;
        background: rgba(255, 255, 255, .64);
    }

    .hero-glass-panel h1 {
        font-size: clamp(43px, 12vw, 62px);
    }

    .hero-action-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-action-row .btn {
        width: 100%;
    }

    .hero-assurance-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .hero-info-card {
        display: none;
    }

    .section {
        padding: 68px 0;
    }

    .professional-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .professional-section-head h2 {
        font-size: 38px;
    }

    .professional-category-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        scroll-snap-type: x mandatory;
        padding-bottom: 9px;
    }

    .professional-category-card {
        min-width: 210px;
        min-height: 285px;
        scroll-snap-align: start;
    }

    .professional-category-card img {
        height: 196px;
    }

    .product-grid,
    .professional-product-grid,
    .shop-layout > div > .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-info {
        padding: 13px;
    }

    .product-info h3 {
        min-height: 36px;
        font-size: 13px;
    }

    .product-short {
        display: none;
    }

    .price-row strong {
        font-size: 16px;
    }

    .product-actions .btn {
        min-height: 36px;
        padding-inline: 7px;
        font-size: 9px;
    }

    .professional-service-panel {
        padding: 28px 21px;
        border-radius: 23px;
    }

    .service-introduction h2 {
        font-size: 38px;
    }

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

    .professional-process-grid article {
        padding: 20px;
    }

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

    .footer-brand-block {
        grid-column: auto;
    }

    .professional-footer-bottom {
        min-height: 90px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding-block: 20px;
    }

    .professional-mobile-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100;
        min-height: 70px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding: 7px 7px max(7px, env(safe-area-inset-bottom));
        border-top: 1px solid rgba(225, 220, 228, .95);
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 -12px 34px rgba(31, 18, 38, .08);
        backdrop-filter: blur(22px) saturate(135%);
        -webkit-backdrop-filter: blur(22px) saturate(135%);
    }

    .professional-mobile-nav a {
        position: relative;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border-radius: 12px;
        color: #77717c;
        font-size: 8px;
        font-weight: 650;
    }

    .professional-mobile-nav a.active {
        color: var(--purple);
        background: rgba(109, 46, 130, .07);
    }

    .professional-mobile-nav svg {
        width: 20px;
        height: 20px;
    }

    .mobile-cart-icon {
        position: relative;
        width: 36px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 11px;
        background: var(--accent);
        color: #ffffff;
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(128, 36, 130, .22);
    }

    .mobile-cart-icon b {
        position: absolute;
        top: -6px;
        right: -6px;
        min-width: 17px;
        height: 17px;
        display: grid;
        place-items: center;
        border: 2px solid #ffffff;
        border-radius: 999px;
        background: var(--pink);
        color: #ffffff;
        font-size: 7px;
    }

    .back-to-top {
        right: 14px;
        bottom: 82px;
    }
}

@media (max-width: 520px) {
    .professional-hero-shell {
        min-height: 570px;
    }

    .hero-glass-panel h1 {
        font-size: 42px;
    }

    .professional-process-grid {
        grid-template-columns: 1fr;
    }

    .footer-link-list {
        grid-template-columns: 1fr 1fr;
    }
}
