/* ——— Cửa hàng công khai (khách chưa đăng nhập) ——— */
body.dwm-blank-page {
    margin: 0;
    background: #f1f5f9;
    color: #0f172a;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
}

.dwm-store-public {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f1f5f9;
}

.dwm-store-public__main {
    flex: 1;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 16px 40px;
    box-sizing: border-box;
}

/* Header */
.dwm-sp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.dwm-sp-header__bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.dwm-sp-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dwm-sp-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    flex-shrink: 0;
}

.dwm-sp-brand__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}

.dwm-sp-brand__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dwm-sp-brand__text strong {
    font-size: 1rem;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.dwm-sp-brand__text small {
    font-size: 0.75rem;
    color: #64748b;
}

body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle {
    appearance: none;
    -webkit-appearance: none;
    display: none;
    box-sizing: border-box;
    margin-left: auto;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #f8fafc;
    color: #334155;
    box-shadow: none;
    cursor: pointer;
    line-height: 1;
    font: inherit;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle:active {
    transform: scale(0.94);
    background: #dbeafe;
    border-color: #93c5fd;
}

body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle:focus {
    outline: none;
}

body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle.is-open,
body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle[aria-expanded="true"] {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-color: #1d4ed8;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle.is-open:hover,
body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle[aria-expanded="true"]:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    border-color: #1e40af;
}

body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle.is-open:active,
body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle[aria-expanded="true"]:active {
    transform: scale(0.94);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.dwm-sp-nav-toggle__lines,
.dwm-sp-nav-toggle__lines::before,
.dwm-sp-nav-toggle__lines::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease, background 0.2s ease;
}

.dwm-sp-nav-toggle__lines::before,
.dwm-sp-nav-toggle__lines::after {
    content: "";
    position: absolute;
    left: 0;
}

.dwm-sp-nav-toggle__lines::before {
    top: -6px;
}

.dwm-sp-nav-toggle__lines::after {
    top: 6px;
}

body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle.is-open .dwm-sp-nav-toggle__lines,
body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle[aria-expanded="true"] .dwm-sp-nav-toggle__lines {
    background: transparent;
}

body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle.is-open .dwm-sp-nav-toggle__lines::before,
body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle[aria-expanded="true"] .dwm-sp-nav-toggle__lines::before {
    top: 0;
    transform: rotate(45deg);
}

body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle.is-open .dwm-sp-nav-toggle__lines::after,
body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle[aria-expanded="true"] .dwm-sp-nav-toggle__lines::after {
    top: 0;
    transform: rotate(-45deg);
}

.dwm-sp-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.dwm-sp-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.dwm-sp-nav__link:hover,
.dwm-sp-nav__link.is-active {
    background: #eff6ff;
    color: #1d4ed8;
}

.dwm-sp-nav__link.is-cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.dwm-sp-nav__link.is-cta:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: #fff;
}

.dwm-sp-header__hotline {
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
    font-size: 0.82rem;
    padding: 6px 12px;
}

.dwm-sp-header__hotline a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    margin-left: 6px;
}

/* Banner */
.dwm-sp-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dwm-sp-banner__image {
    width: 100%;
    line-height: 0;
    background: #e2e8f0;
}

.dwm-sp-banner__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
}

.dwm-sp-banner__body {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, #1e3a8a 0%, #2563eb 45%, #0ea5e9 100%);
}

.dwm-sp-banner--has-image .dwm-sp-banner__body {
    min-height: auto;
}

.dwm-sp-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.55) 55%, rgba(15, 23, 42, 0.35) 100%);
}

.dwm-sp-banner__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px;
    color: #fff;
}

.dwm-sp-banner__content h1,
.dwm-sp-banner__title {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1.2;
    max-width: 720px;
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(15, 23, 42, 0.45), 0 1px 3px rgba(0, 0, 0, 0.35);
}

.dwm-sp-banner__eyebrow {
    margin: 0 0 8px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 6px rgba(15, 23, 42, 0.35);
}

.dwm-sp-banner__subtitle {
    margin: 0 0 24px;
    font-size: 1.05rem;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(15, 23, 42, 0.3);
}

.dwm-sp-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Buttons */
.dwm-sp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.12s, box-shadow 0.12s;
}

.dwm-sp-btn--primary,
.dwm-sp-btn--light {
    background: #fff;
    color: #1d4ed8;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
}

.dwm-sp-btn--primary {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.dwm-sp-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}

.dwm-sp-btn:hover {
    transform: translateY(-1px);
}

/* Page sections */
.dwm-sp-page {
    width: 100%;
}

.dwm-sp-section {
    margin-bottom: 28px;
}

.dwm-sp-section__title {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.dwm-sp-section__lead {
    margin: 0 0 20px;
    color: #64748b;
}

.dwm-sp-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.dwm-sp-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.dwm-sp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12);
    border-color: #bfdbfe;
}

.dwm-sp-card h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #1e293b;
}

.dwm-sp-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.92rem;
    flex: 1;
}

.dwm-sp-card__link {
    font-weight: 700;
    color: #2563eb;
    font-size: 0.88rem;
}

.dwm-sp-info-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.dwm-sp-info-strip__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dwm-sp-info-strip__item strong {
    color: #1e293b;
}

.dwm-sp-info-strip__item span,
.dwm-sp-info-strip__item a {
    color: #64748b;
    font-size: 0.92rem;
    text-decoration: none;
}

.dwm-sp-info-strip__item a:hover {
    color: #2563eb;
}

/* Panel / forms */
.dwm-sp-panel {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.dwm-sp-panel__title {
    margin: 0 0 6px;
    font-size: 1.25rem;
}

.dwm-sp-panel__desc {
    margin: 0 0 18px;
    color: #64748b;
}

.dwm-sp-lookup-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

#dwm-lookup-reader {
    max-width: 360px;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.dwm-sp-lookup-form input[type="search"],
.dwm-sp-lookup-form input[type="text"] {
    flex: 1 1 240px;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 1rem;
}

.dwm-sp-alert {
    padding: 12px 14px;
    border-radius: 10px;
    margin: 12px 0;
    font-size: 0.92rem;
}

.dwm-sp-alert--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.dwm-sp-alert--warning {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
}

.dwm-sp-alert--info {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.dwm-sp-dl {
    display: grid;
    gap: 10px;
    margin: 0 0 16px;
}

.dwm-sp-dl > div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.dwm-sp-dl dt {
    margin: 0;
    color: #64748b;
    font-weight: 600;
}

.dwm-sp-dl dd {
    margin: 0;
    color: #0f172a;
}

.dwm-sp-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.dwm-sp-badge--ok {
    background: #ecfdf5;
    color: #047857;
}

.dwm-sp-badge--expired {
    background: #fef2f2;
    color: #b91c1c;
}

.dwm-sp-warranty-service,
.dwm-sp-repair-panel {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 12px;
}

.dwm-sp-warranty-service {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.dwm-sp-warranty-service h3,
.dwm-sp-repair-panel h3 {
    margin: 0 0 12px;
    font-size: 1.05rem;
}

.dwm-sp-repair-panel {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.dwm-sp-dl--compact {
    margin-bottom: 0;
}

.dwm-sp-dl--compact > div {
    grid-template-columns: 130px 1fr;
}

/* Auth card inside public layout */
.dwm-sp-auth-wrap {
    max-width: 440px;
    margin: 0 auto;
}

.dwm-saas-page--auth-in-store {
    padding: 0;
    min-height: auto;
    background: transparent;
}

.dwm-saas-page--auth-in-store .dwm-saas-page-inner {
    max-width: none;
    padding: 0;
}

.dwm-saas-page--auth-in-store .dwm-saas-page-header {
    display: none;
}

.dwm-saas-page--auth-in-store .dwm-saas-card {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

/* Public activation inside store layout */
.dwm-store-public .dwm-public-wrap {
    margin: 0;
    max-width: none;
    box-shadow: none;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

/* Footer */
.dwm-sp-footer {
    background: #0f172a;
    color: #cbd5e1;
    margin-top: auto;
}

.dwm-sp-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.dwm-sp-footer__title {
    margin: 0 0 12px;
    color: #f8fafc;
    font-size: 1rem;
}

.dwm-sp-footer__text {
    margin: 0 0 8px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.dwm-sp-footer__text a {
    color: #93c5fd;
    text-decoration: none;
}

.dwm-sp-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.dwm-sp-footer__list li {
    display: grid;
    gap: 2px;
    font-size: 0.88rem;
}

.dwm-sp-footer__list span {
    color: #94a3b8;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.dwm-sp-footer__list a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
}

.dwm-sp-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.dwm-sp-footer__links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
}

.dwm-sp-footer__links a:hover {
    color: #fff;
}

.dwm-sp-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dwm-sp-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: background 0.15s, transform 0.15s;
}

.dwm-sp-social svg {
    width: 20px;
    height: 20px;
}

.dwm-sp-social:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.dwm-sp-social--facebook:hover { background: #1877f2; }
.dwm-sp-social--messenger:hover { background: #0084ff; }
.dwm-sp-social--tiktok:hover { background: #010101; }
.dwm-sp-social--youtube:hover { background: #ff0000; }



.dwm-sp-social--zalo:hover {
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 104, 255, 0.28);
}

.dwm-sp-social-icon-zalo {
    display: block;
    width: 28px;
    height: auto;
    max-height: 20px;
    object-fit: contain;
}

.dwm-sp-footer__bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
    padding: 14px 16px;
    font-size: 0.82rem;
    color: #94a3b8;
}

.dwm-sp-footer__bottom p {
    margin: 0;
}

.dwm-sp-footer .dwm-store-footer__referral {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.12) 0%, rgba(15, 23, 42, 0.35) 55%, rgba(6, 78, 59, 0.1) 100%);
    padding: 18px 20px;
}

.dwm-sp-footer .dwm-store-footer__referral-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 24px;
}

.dwm-sp-footer .dwm-store-footer__referral-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 4px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #e2e8f0;
}

.dwm-sp-footer .dwm-store-footer__referral-title .dashicons {
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: #60a5fa;
}

.dwm-sp-footer .dwm-store-footer__referral-desc {
    margin: 0;
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.45;
}

.dwm-sp-footer .dwm-store-footer__referral-actions {
    flex: 1 1 320px;
    max-width: 620px;
    display: flex;
    align-items: stretch;
    gap: 8px;
    min-width: 0;
}

.dwm-sp-footer .dwm-store-footer__referral-input {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.65);
    color: #e2e8f0;
    font-size: 0.85rem;
    box-sizing: border-box;
}

.dwm-sp-footer .dwm-store-footer__referral-input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.dwm-sp-footer .dwm-store-footer__referral-btn {
    flex: 0 0 auto;
    margin: 0;
    padding: 10px 16px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.dwm-sp-footer .dwm-store-footer__referral-btn:hover,
.dwm-sp-footer .dwm-store-footer__referral-btn:focus {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    outline: none;
}

.dwm-sp-footer .dwm-store-footer__referral-btn.is-copied {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

@media (max-width: 700px) {
    .dwm-sp-footer .dwm-store-footer__referral-actions {
        flex-direction: column;
        max-width: none;
        width: 100%;
    }

    .dwm-sp-footer .dwm-store-footer__referral-btn {
        width: 100%;
    }
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 960px) {
    .dwm-sp-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dwm-sp-cards,
    .dwm-sp-info-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.dwm-blank-page .dwm-store-public button.dwm-sp-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .dwm-sp-nav {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: #fff;
        border-bottom: 1px solid transparent;
        padding: 0 16px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        box-shadow: none;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease, visibility 0.2s ease;
    }

    .dwm-sp-header__inner {
        position: relative;
        flex-wrap: wrap;
    }

    .dwm-sp-nav.is-open {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
        padding: 12px 16px 16px;
        border-bottom-color: #e2e8f0;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
        pointer-events: auto;
    }

    .dwm-sp-nav__link {
        justify-content: center;
        padding: 12px 14px;
        border-radius: 10px;
    }

    .dwm-sp-nav__link:active {
        transform: scale(0.98);
    }

    .dwm-sp-nav__link.is-cta {
        margin-top: 4px;
    }

    .dwm-sp-footer__grid {
        grid-template-columns: 1fr;
    }

    .dwm-sp-dl > div {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}
