/* ================================================================
   ZimLink — product.css
   Styles for ALL classes emitted by product.js:
   cards, skeletons, badges, modal, toast, sign-in bar, cart bar
   ================================================================ */

/* ── CARD GRID ──────────────────────────────────────────────── */
#newArrivalsGrid,
#featuredGrid,
#allProductsGrid,
#categoryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 0.5rem;
}

/* ── PRODUCT CARD ───────────────────────────────────────────── */
.product-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    cursor: default;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* entrance animation */
.prd-animate {
    animation: prdFadeUp 0.35s ease both;
}
@keyframes prdFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── IMAGE ──────────────────────────────────────────────────── */
.prd-img {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
    flex-shrink: 0;
}

.prd-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .prd-img img {
    transform: scale(1.04);
}

.no-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #cbd5e1;
    font-size: 2.5rem;
}

/* ── BADGES ─────────────────────────────────────────────────── */
.prd-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.prd-badge-new {
    background: rgb(37, 189, 37);
    color: #ffffff;
}

.prd-badge-sold {
    background: #ef4444;
    color: #ffffff;
}

.prd-badge-outofstock {
    background: #64748b;
    color: #ffffff;
}

/* ── CARD BODY ──────────────────────────────────────────────── */
.prd-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.prd-cat {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgb(3, 192, 3);
}

.prd-name {
    font-size: 1rem;
    font-weight: 600;
    color: rgb(6, 6, 24);
    margin: 0;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prd-desc {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.prd-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgb(6, 6, 24);
    margin-top: 2px;
}

.prd-currency {
    font-size: 0.9rem;
    font-weight: 600;
    vertical-align: super;
    margin-right: 1px;
    color: rgb(37, 189, 37);
}

/* ── META ROW ───────────────────────────────────────────────── */
.prd-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.78rem;
    color: #64748b;
}

.prd-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.prd-meta i {
    color: #94a3b8;
    font-size: 0.75rem;
}

/* ── SELLER ROW ─────────────────────────────────────────────── */
.prd-seller {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #475569;
    gap: 8px;
}

.prd-seller-left {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
}

.prd-seller-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.prd-seller-link,
.prd-modal-seller-link {
    cursor: pointer;
}
.prd-seller-link:hover,
.prd-modal-seller-link:hover {
    color: var(--green, #25bd25);
    text-decoration: underline;
}

.prd-verified-badge {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.prd-verified-badge img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.prd-seller i {
    color: #94a3b8;
    margin-right: 3px;
}

.prd-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #f59e0b;
}

/* ── STATS ROW ──────────────────────────────────────────────── */
.prd-stats {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: #94a3b8;
}

.prd-views,
.prd-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.prd-views i,
.prd-time i {
    font-size: 0.7rem;
}

/* ── ACTIONS ────────────────────────────────────────────────── */
.prd-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.prd-buy-btn {
    flex: 1;
    padding: 9px 14px;
    background: rgb(37, 189, 37);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.1s ease;
}

.prd-buy-btn:hover {
    background: rgb(3, 192, 3);
    transform: scale(1.02);
}

.prd-buy-btn:active {
    transform: scale(0.98);
}

.prd-view-btn {
    padding: 9px 12px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prd-view-btn:hover {
    background: #e2e8f0;
    color: rgb(6, 6, 24);
}

.prd-sold-btn {
    flex: 1;
    padding: 9px 14px;
    background: #f1f5f9;
    color: #94a3b8;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ── HEADING COUNT BADGE ────────────────────────────────────── */
.prd-count {
    font-size: 0.78rem;
    font-weight: 500;
    color: #64748b;
    margin-left: 4px;
}

/* ── EMPTY STATE ────────────────────────────────────────────── */
.prd-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: #94a3b8;
}

.prd-empty i {
    font-size: 3rem;
    margin-bottom: 14px;
    display: block;
    color: #cbd5e1;
}

.prd-empty h3 {
    font-size: 1.1rem;
    color: #475569;
    margin: 0 0 8px;
}

.prd-empty p {
    font-size: 0.88rem;
    margin: 0 0 16px;
}

.prd-browse-btn {
    display: inline-block;
    padding: 9px 20px;
    background: rgb(37, 189, 37);
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}

.prd-browse-btn:hover {
    background: rgb(3, 192, 3);
}

/* ── SKELETON LOADER ────────────────────────────────────────── */
.prd-skeleton {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.prd-skel-img {
    width: 100%;
    height: 210px;
}

.prd-skel-line {
    border-radius: 6px;
    margin: 0 14px;
}

.skel-anim {
    background: linear-gradient(110deg, #e9ecef 8%, #f8f9fa 18%, #e9ecef 33%);
    background-size: 200% 100%;
    animation: skelShimmer 1.4s ease-in-out infinite;
}

@keyframes skelShimmer {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}

/* ── PRODUCT MODAL ──────────────────────────────────────────── */
.prd-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 24, 0.65);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: prdFadeIn 0.2s ease;
}

@keyframes prdFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.prd-modal-box {
    background: #ffffff;
    border-radius: 18px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: prdSlideUp 0.25s ease;
}

@keyframes prdSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.prd-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    z-index: 10;
    transition: background 0.15s;
}

.prd-modal-close:hover {
    background: #e2e8f0;
}

.prd-modal-img {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    border-radius: 18px 18px 0 0;
}

/* ── PRODUCT MODAL — swipeable image gallery (up to 5 images) ── */
.prd-gallery {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}
.prd-gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.3s ease;
}
.prd-gallery-slide {
    flex: 0 0 100%;
    height: 100%;
    background-color: #f1f5f9;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.prd-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 5;
}
.prd-gallery-arrow:hover { background: #fff; }
.prd-gallery-prev { left: 10px; }
.prd-gallery-next { right: 10px; }
.prd-gallery-counter {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    z-index: 5;
}
.prd-gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 5;
}
.prd-gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}
.prd-gallery-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.prd-modal-img-empty {
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #cbd5e1;
}

.prd-modal-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prd-modal-cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgb(3, 192, 3);
}

.prd-modal-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgb(6, 6, 24);
    margin: 0;
}

.prd-modal-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: rgb(37, 189, 37);
}

.prd-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: #f8fafc;
    border-radius: 10px;
    padding: 14px;
    font-size: 0.85rem;
}

.prd-modal-grid > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.prd-modal-grid strong {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #94a3b8;
}

.prd-modal-grid span {
    color: rgb(6, 6, 24);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── VARIANT SELECTOR (colour / size) ──────────────────────── */
.prd-variant-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 10px;
}
.prd-variant-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.prd-variant-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #475569;
}
.prd-variant-req { color: #ef4444; }
.prd-variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.prd-variant-chip {
    padding: 7px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 20px;
    background: white;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.prd-variant-chip:hover { border-color: rgb(37, 189, 37); }
.prd-variant-chip.selected {
    background: rgb(37, 189, 37);
    border-color: rgb(37, 189, 37);
    color: white;
}
.prd-variant-hint {
    font-size: 0.78rem;
    color: #ef4444;
    font-weight: 600;
}

.prd-modal-desc {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
}

.prd-modal-desc strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.prd-modal-buy-btn {
    width: 100%;
    padding: 13px;
    background: rgb(37, 189, 37);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    margin-top: 4px;
}

.prd-modal-buy-btn:hover {
    background: rgb(3, 192, 3);
}

.prd-modal-signin-btn {
    width: 100%;
    padding: 13px;
    background: rgb(6, 6, 24);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    margin-top: 4px;
}

.prd-modal-signin-btn:hover {
    background: #1e293b;
}

/* ── SIGN-IN / OWN-PRODUCT BAR ──────────────────────────────── */
.prd-signin-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(6, 6, 24);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 8000;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    animation: prdBarUp 0.25s ease;
    white-space: nowrap;
    border: 2px solid transparent;
}

@keyframes prdBarUp {
    from { opacity: 0; transform: translate(-50%, 12px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

.prd-signin-link {
    background: rgb(37, 189, 37);
    color: #ffffff;
    padding: 7px 16px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.15s;
}

.prd-signin-link:hover {
    background: rgb(3, 192, 3);
}

.prd-signin-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    flex-shrink: 0;
}

.prd-signin-close:hover {
    color: #ffffff;
}

/* ── CART BAR ───────────────────────────────────────────────── */
.prd-cart-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(6, 6, 24);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 8001;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    animation: prdBarUp 0.25s ease;
    white-space: nowrap;
}

.prd-cart-link {
    background: rgb(37, 189, 37);
    color: #ffffff;
    padding: 7px 16px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.15s;
}

.prd-cart-link:hover {
    background: rgb(3, 192, 3);
}

.prd-cart-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    flex-shrink: 0;
}

.prd-cart-close:hover {
    color: #ffffff;
}

/* ── TOAST ──────────────────────────────────────────────────── */
.prd-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgb(6, 6, 24);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.prd-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ── VIEW TOGGLE (2-up default / 1-up single view) ───────────── */
.prd-view-toggle {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin: 0 0 0.75rem;
}

.prd-view-toggle-btn {
    width: 34px;
    height: 34px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    border-radius: 8px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.prd-view-toggle-btn:hover {
    background: #f1f5f9;
}

.prd-view-toggle-btn.active {
    background: rgb(37, 189, 37);
    border-color: rgb(37, 189, 37);
    color: #ffffff;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .prd-view-toggle {
        display: flex;
    }

    #newArrivalsGrid,
    #featuredGrid,
    #allProductsGrid,
    #categoryGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    /* Single-view mode: user chose "one at a time" — restore full-size card */
    body.prd-single-view #newArrivalsGrid,
    body.prd-single-view #featuredGrid,
    body.prd-single-view #allProductsGrid,
    body.prd-single-view #categoryGrid {
        grid-template-columns: 1fr;
    }

    body.prd-single-view .prd-img { height: 210px; }
    body.prd-single-view .prd-body { padding: 14px 16px 16px; gap: 6px; }
    body.prd-single-view .prd-cat { font-size: 0.72rem; }
    body.prd-single-view .prd-name { font-size: 1rem; }
    body.prd-single-view .prd-desc { font-size: 0.82rem; -webkit-line-clamp: 3; }
    body.prd-single-view .prd-price { font-size: 1.25rem; }
    body.prd-single-view .prd-currency { font-size: 0.9rem; }
    body.prd-single-view .prd-meta,
    body.prd-single-view .prd-seller,
    body.prd-single-view .prd-stats { font-size: 0.78rem; gap: 8px; }
    body.prd-single-view .prd-actions { gap: 8px; margin-top: 8px; flex-direction: row; }
    body.prd-single-view .prd-buy-btn,
    body.prd-single-view .prd-sold-btn { padding: 9px 14px; font-size: 0.85rem; }
    body.prd-single-view .prd-view-btn { padding: 9px 12px; width: auto; }
    body.prd-single-view .prd-badge { font-size: 0.7rem; padding: 3px 10px; top: 10px; left: 10px; }

    .prd-img {
        height: 150px;
    }

    .prd-body {
        padding: 10px 12px 12px;
        gap: 4px;
    }

    .prd-cat {
        font-size: 0.62rem;
    }

    .prd-name {
        font-size: 0.85rem;
    }

    .prd-desc {
        font-size: 0.7rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .prd-price {
        font-size: 1rem;
    }

    .prd-currency {
        font-size: 0.75rem;
    }

    .prd-meta,
    .prd-seller,
    .prd-stats {
        font-size: 0.68rem;
        gap: 6px;
    }

    .prd-actions {
        gap: 6px;
        margin-top: 6px;
    }

    .prd-buy-btn,
    .prd-sold-btn {
        padding: 7px 8px;
        font-size: 0.72rem;
        gap: 4px;
    }

    .prd-view-btn {
        padding: 7px 10px;
    }

    .prd-badge {
        font-size: 0.6rem;
        padding: 2px 8px;
        top: 6px;
        left: 6px;
    }

    .prd-modal-box {
        border-radius: 14px;
    }

    .prd-modal-img {
        height: 190px;
    }

    .prd-modal-grid {
        grid-template-columns: 1fr;
    }

    .prd-signin-bar,
    .prd-cart-bar {
        bottom: 16px;
        padding: 12px 16px;
        font-size: 0.82rem;
        max-width: calc(100vw - 32px);
        flex-wrap: wrap;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    #newArrivalsGrid,
    #featuredGrid,
    #allProductsGrid,
    #categoryGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    body.prd-single-view .prd-img { height: 190px; }

    .prd-img {
        height: 110px;
    }

    .prd-body {
        padding: 8px 9px 10px;
        gap: 3px;
    }

    .prd-cat {
        font-size: 0.56rem;
    }

    .prd-name {
        font-size: 0.75rem;
    }

    .prd-desc {
        font-size: 0.64rem;
    }

    .prd-price {
        font-size: 0.85rem;
    }

    .prd-currency {
        font-size: 0.65rem;
    }

    .prd-meta,
    .prd-stats {
        font-size: 0.6rem;
        gap: 4px;
    }

    .prd-seller {
        font-size: 0.62rem;
    }

    .prd-rating {
        font-size: 0.6rem;
    }

    .prd-actions {
        flex-direction: column;
        gap: 5px;
        margin-top: 5px;
    }

    .prd-buy-btn,
    .prd-sold-btn,
    .prd-view-btn {
        width: 100%;
        padding: 6px 8px;
        font-size: 0.66rem;
    }

    .prd-badge {
        font-size: 0.52rem;
        padding: 2px 6px;
        top: 5px;
        left: 5px;
    }
}