/* =========================================================
   SKYFRAME SMP STORE
   ========================================================= */

:root {
    --primary: #7c3aed;
    --primary-light: #a855f7;
    --primary-bright: #c084fc;

    --background: #0d0a12;
    --background-light: #141019;

    --card: #17121f;
    --card-light: #1d1727;

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(168, 85, 247, 0.45);

    --text: #f7f4fb;
    --text-secondary: #c7bfd3;
    --muted: #8e8599;

    --danger: #ef4444;

    --radius: 14px;

    --transition: 0.2s ease;
}


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

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


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(124, 58, 237, 0.15),
            transparent 40%
        ),
        var(--background);

    color: var(--text);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.5;
}


button,
a {
    font: inherit;
}


button {
    cursor: pointer;
}


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


/* =========================================================
   TOPBAR
   ========================================================= */

.topbar {
    position: sticky;

    top: 0;

    z-index: 100;

    height: 70px;

    border-bottom:
        1px solid var(--border);

    background:
        rgba(13, 10, 18, 0.82);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


.nav-inner {
    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.brand {
    display: flex;

    align-items: center;

    gap: 11px;

    font-size: 16px;

    font-weight: 800;
}


.brand img {
    width: 34px;
    height: 34px;

    border-radius: 9px;
}


.nav-links {
    display: flex;

    align-items: center;

    gap: 28px;

    margin-left: auto;
}


.nav-links a {
    color: var(--muted);

    font-size: 14px;

    font-weight: 600;

    transition:
        color var(--transition);
}


.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}


/* =========================================================
   CART BUTTON
   ========================================================= */

.cart-button {
    display: flex;

    align-items: center;

    gap: 8px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    padding: 9px 13px;

    color: var(--text);

    background:
        rgba(255, 255, 255, 0.035);

    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.cart-button:hover {
    background:
        rgba(168, 85, 247, 0.12);

    border-color:
        var(--border-hover);

    transform:
        translateY(-1px);
}


.cart-icon {
    width: 18px;
    height: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-bright);
}


.cart-icon svg {
    width: 18px;
    height: 18px;

    display: block;
}


.cart-count {
    min-width: 20px;

    height: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 5px;

    border-radius: 20px;

    color: white;

    background:
        var(--primary);

    font-size: 11px;

    font-weight: 800;
}


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

.store-hero {
    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-bottom:
        1px solid var(--border);
}


.hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    top: -300px;

    border-radius: 50%;

    background:
        rgba(124, 58, 237, 0.22);

    filter: blur(100px);

    pointer-events: none;
}


.hero-content {
    position: relative;

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

    text-align: center;

    padding: 80px 0;
}


.hero-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 12px;

    border:
        1px solid
        rgba(168, 85, 247, 0.25);

    border-radius: 30px;

    color:
        var(--primary-bright);

    background:
        rgba(124, 58, 237, 0.08);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.12em;
}


.label-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--primary-light);

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


.hero-content h1 {
    margin-top: 22px;

    font-size:
        clamp(
            48px,
            8vw,
            78px
        );

    line-height: 0.98;

    letter-spacing:
        -0.055em;

    font-weight: 900;
}


.hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            110deg,
            #a855f7,
            #c084fc,
            #e9d5ff
        );

    background-clip: text;

    -webkit-background-clip: text;

    color: transparent;
}


.hero-content p {
    max-width: 620px;

    margin: 25px auto 0;

    color:
        var(--text-secondary);

    font-size: 16px;
}


.hero-actions {
    margin-top: 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;
}


.hero-button,
.hero-secondary {
    min-height: 45px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 20px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;
}


.hero-button {
    border: 0;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-light)
        );

    box-shadow:
        0 8px 30px
        rgba(124, 58, 237, 0.25);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.hero-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 12px 35px
        rgba(124, 58, 237, 0.4);
}


.hero-secondary {
    border:
        1px solid var(--border);

    color:
        var(--text-secondary);

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}


.hero-secondary:hover {
    color: white;

    background:
        rgba(255, 255, 255, 0.06);

    border-color:
        rgba(255, 255, 255, 0.15);
}


/* =========================================================
   STORE SECTION
   ========================================================= */

.store-section {
    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin: auto;

    padding: 80px 0;
}


.section-header {
    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 30px;
}


.section-label {
    color:
        var(--primary-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.15em;
}


.section-header h2 {
    margin-top: 5px;

    font-size: 32px;

    letter-spacing:
        -0.035em;
}


.section-header p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.categories {
    display: flex;

    gap: 8px;

    margin-bottom: 25px;

    overflow-x: auto;

    scrollbar-width: none;
}


.categories::-webkit-scrollbar {
    display: none;
}


.category {
    flex-shrink: 0;

    padding: 9px 16px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    color: var(--muted);

    background:
        rgba(255, 255, 255, 0.025);

    font-size: 13px;

    font-weight: 700;

    transition:
        all var(--transition);
}


.category:hover {
    color: white;

    border-color:
        var(--border-hover);
}


.category.active {
    color: white;

    border-color:
        rgba(168, 85, 247, 0.4);

    background:
        rgba(124, 58, 237, 0.18);
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.product-grid {
    display: grid;

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

    gap: 18px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.product-card {
    position: relative;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.025),
            transparent
        ),
        var(--card);

    cursor: pointer;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.product-card:hover {
    transform:
        translateY(-4px);

    border-color:
        var(--border-hover);

    box-shadow:
        0 15px 45px
        rgba(0, 0, 0, 0.25),

        0 0 30px
        rgba(124, 58, 237, 0.07);
}


.product-image {
    height: 190px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            rgba(124, 58, 237, 0.2),
            transparent 65%
        ),
        #120d19;

    border-bottom:
        1px solid var(--border);
}


.product-image::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background:
        rgba(168, 85, 247, 0.12);

    filter: blur(30px);
}


.product-image img {
    position: relative;

    max-width: 90px;
    max-height: 90px;

    object-fit: contain;

    z-index: 1;
}


.product-placeholder {
    position: relative;

    z-index: 1;

    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    color:
        var(--primary-bright);

    background:
        linear-gradient(
            135deg,
            rgba(124, 58, 237, 0.25),
            rgba(168, 85, 247, 0.08)
        );

    border:
        1px solid
        rgba(168, 85, 247, 0.2);

    font-size: 32px;

    box-shadow:
        0 15px 40px
        rgba(124, 58, 237, 0.15);
}


.product-content {
    padding: 20px;
}


.product-category {
    color:
        var(--primary-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.product-name {
    margin-top: 5px;

    font-size: 20px;

    font-weight: 800;
}


.product-description {
    min-height: 44px;

    margin-top: 6px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.55;
}


.product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    margin-top: 20px;
}


.product-price {
    font-size: 19px;

    font-weight: 800;
}


.add-button {
    border:
        1px solid
        rgba(168, 85, 247, 0.25);

    border-radius: 9px;

    padding: 9px 13px;

    color: white;

    background:
        rgba(124, 58, 237, 0.15);

    font-size: 12px;

    font-weight: 700;

    transition:
        all var(--transition);
}


.add-button:hover {
    border-color:
        var(--primary-light);

    background:
        var(--primary);

    transform:
        translateY(-1px);
}


/* =========================================================
   NO PRODUCTS
   ========================================================= */

.no-products {
    display: none;

    padding: 80px 20px;

    text-align: center;

    border:
        1px dashed var(--border);

    border-radius:
        var(--radius);
}


.no-products.show {
    display: block;
}


.no-products-icon {
    font-size: 32px;

    color:
        var(--primary-light);
}


.no-products h3 {
    margin-top: 10px;
}


.no-products p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   INFO SECTION
   ========================================================= */

.info-section {
    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin:
        0 auto 80px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}


.info-card {
    display: flex;

    gap: 14px;

    padding: 20px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        rgba(255, 255, 255, 0.02);
}


.info-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        rgba(124, 58, 237, 0.12);

    font-size: 18px;
}


.info-card h3 {
    font-size: 14px;
}


.info-card p {
    margin-top: 3px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   CART OVERLAY
   ========================================================= */

.cart-overlay {
    position: fixed;

    inset: 0;

    z-index: 200;

    background:
        rgba(0, 0, 0, 0.6);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;

    backdrop-filter:
        blur(3px);
}


.cart-overlay.open {
    opacity: 1;

    visibility: visible;
}


/* =========================================================
   CART SIDEBAR
   ========================================================= */

.cart-sidebar {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 201;

    width:
        min(
            420px,
            100%
        );

    display: flex;

    flex-direction: column;

    background:
        #110d17;

    border-left:
        1px solid var(--border);

    transform:
        translateX(100%);

    transition:
        transform 0.3s ease;

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


.cart-sidebar.open {
    transform:
        translateX(0);
}


/* =========================================================
   CART HEADER
   ========================================================= */

.cart-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 25px;

    border-bottom:
        1px solid var(--border);
}


.cart-header-label {
    color:
        var(--primary-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.12em;
}


.cart-header h2 {
    margin-top: 2px;

    font-size: 22px;
}


.close-cart,
.modal-close {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 9px;

    color: var(--muted);

    background:
        rgba(255, 255, 255, 0.03);

    font-size: 22px;

    transition:
        all var(--transition);
}


.close-cart:hover,
.modal-close:hover {
    color: white;

    border-color:
        var(--border-hover);

    background:
        rgba(124, 58, 237, 0.12);
}


/* =========================================================
   CART ITEMS
   ========================================================= */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px;
}


/* =========================================================
   EMPTY CART
   ========================================================= */

.empty-cart {
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.empty-cart-icon {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background:
        rgba(124, 58, 237, 0.1);

    font-size: 28px;
}


.empty-cart h3 {
    margin-top: 18px;

    font-size: 17px;
}


.empty-cart p {
    max-width: 250px;

    margin-top: 5px;

    color: var(--muted);

    font-size: 13px;
}


.empty-cart-button {
    margin-top: 18px;

    padding: 9px 15px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    color: white;

    background:
        rgba(255, 255, 255, 0.04);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   CART ITEM
   ========================================================= */

.cart-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 0;

    border-bottom:
        1px solid var(--border);
}


.cart-item-image {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background:
        radial-gradient(
            circle,
            rgba(124, 58, 237, 0.18),
            transparent 70%
        ),
        #18111f;

    border:
        1px solid var(--border);

    overflow: hidden;
}


.cart-item-image img {
    width: 34px;
    height: 34px;

    object-fit: contain;
}


.cart-item-placeholder {
    color:
        var(--primary-light);

    font-size: 20px;
}


.cart-item-info {
    flex: 1;

    min-width: 0;
}


.cart-item-name {
    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


.cart-item-price {
    margin-top: 2px;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   QUANTITY CONTROLS
   ========================================================= */

.quantity-controls {
    display: inline-flex;

    align-items: center;

    gap: 0;

    margin-top: 8px;

    border:
        1px solid var(--border);

    border-radius: 7px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.025);
}


.quantity-button {
    width: 27px;
    height: 26px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    color:
        var(--text-secondary);

    background:
        transparent;

    font-size: 17px;

    line-height: 1;

    transition:
        all var(--transition);
}


.quantity-button:hover {
    color: white;

    background:
        rgba(124, 58, 237, 0.25);
}


.quantity-button:active {
    background:
        rgba(124, 58, 237, 0.4);
}


.quantity {
    min-width: 30px;

    text-align: center;

    color: white;

    font-size: 12px;

    font-weight: 700;
}


.cart-item-quantity {
    display: inline-block;

    margin-top: 6px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   REMOVE BUTTON
   ========================================================= */

.remove-item {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border: 0;

    border-radius: 7px;

    color: var(--muted);

    background: transparent;

    font-size: 19px;

    transition:
        all var(--transition);
}


.remove-item:hover {
    color:
        var(--danger);

    background:
        rgba(239, 68, 68, 0.08);
}


/* =========================================================
   CART FOOTER
   ========================================================= */

.cart-footer {
    padding: 20px;

    border-top:
        1px solid var(--border);
}


.cart-total {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 15px;

    color: var(--muted);

    font-size: 14px;
}


.cart-total strong {
    color: white;

    font-size: 21px;
}


.checkout-button {
    width: 100%;

    height: 47px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 10px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-light)
        );

    font-weight: 800;

    transition:
        all var(--transition);
}


.checkout-button:hover:not(:disabled) {
    transform:
        translateY(-2px);

    box-shadow:
        0 10px 30px
        rgba(124, 58, 237, 0.3);
}


.checkout-button:disabled {
    opacity: 0.4;

    cursor: not-allowed;
}


.checkout-note {
    margin-top: 10px;

    color: var(--muted);

    text-align: center;

    font-size: 10px;
}


/* =========================================================
   PRODUCT MODAL
   ========================================================= */

.modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 300;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(0, 0, 0, 0.7);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;

    backdrop-filter:
        blur(5px);
}


.modal-overlay.open {
    opacity: 1;

    visibility: visible;
}


.product-modal {
    position: relative;

    width:
        min(
            500px,
            100%
        );

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 17px;

    background:
        #130e19;

    transform:
        translateY(15px)
        scale(0.98);

    transition:
        transform 0.25s ease;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.5);
}


.modal-overlay.open
.product-modal {
    transform:
        translateY(0)
        scale(1);
}


.modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 2;
}


.modal-image {
    height: 230px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(124, 58, 237, 0.22),
            transparent 65%
        ),
        #120d19;

    border-bottom:
        1px solid var(--border);

    color:
        var(--primary-light);

    font-size: 60px;
}


.modal-image img {
    max-width: 110px;

    max-height: 110px;

    object-fit: contain;
}


.modal-content {
    padding: 25px;
}


.modal-category {
    color:
        var(--primary-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.modal-content h2 {
    margin-top: 4px;

    font-size: 27px;
}


.modal-content p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 14px;
}


.modal-price {
    margin-top: 18px;

    font-size: 25px;

    font-weight: 900;
}


.modal-add {
    width: 100%;

    height: 47px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 18px;

    border: 0;

    border-radius: 10px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-light)
        );

    font-weight: 800;

    transition:
        all var(--transition);
}


.modal-add:hover {
    transform:
        translateY(-1px);

    box-shadow:
        0 10px 30px
        rgba(124, 58, 237, 0.25);
}


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

footer {
    border-top:
        1px solid var(--border);

    background:
        rgba(0, 0, 0, 0.12);
}


.footer-inner {
    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    min-height: 100px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-brand img {
    width: 34px;
    height: 34px;

    border-radius: 9px;
}


.footer-brand strong,
.footer-brand span {
    display: block;
}


.footer-brand strong {
    font-size: 13px;
}


.footer-brand span {
    color: var(--muted);

    font-size: 10px;
}


.footer-links {
    display: flex;

    gap: 20px;
}


.footer-links a {
    color: var(--muted);

    font-size: 12px;

    transition:
        color var(--transition);
}


.footer-links a:hover {
    color: white;
}


.footer-inner > p {
    color: var(--muted);

    font-size: 10px;
}


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

@media (max-width: 850px) {

    .product-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .info-section {
        grid-template-columns: 1fr;
    }


    .footer-inner {
        flex-wrap: wrap;

        padding: 25px 0;
    }

}


@media (max-width: 650px) {

    .nav-inner {
        width:
            min(
                100% - 25px,
                1180px
            );
    }


    .nav-links {
        display: none;
    }


    .store-hero {
        min-height: 430px;
    }


    .hero-content {
        padding: 60px 0;
    }


    .hero-content h1 {
        font-size: 52px;
    }


    .hero-content p {
        font-size: 14px;
    }


    .hero-actions {
        flex-direction: column;
    }


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

        max-width: 280px;
    }


    .store-section {
        width:
            min(
                100% - 25px,
                1180px
            );

        padding: 55px 0;
    }


    .section-header h2 {
        font-size: 27px;
    }


    .product-grid {
        grid-template-columns: 1fr;
    }


    .info-section {
        width:
            min(
                100% - 25px,
                1180px
            );
    }


    .footer-inner {
        width:
            min(
                100% - 25px,
                1180px
            );

        flex-direction: column;

        align-items: flex-start;
    }


    .footer-inner > p {
        order: 3;
    }


    .product-image {
        height: 210px;
    }

}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}


::-webkit-scrollbar-track {
    background:
        var(--background);
}


::-webkit-scrollbar-thumb {
    border-radius: 10px;

    background:
        #2a2133;
}


::-webkit-scrollbar-thumb:hover {
    background:
        #3b2c48;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
    color: white;

    background:
        var(--primary);
}