#powered_by_leaderos {
    font-size: 12px;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 6px;
    border-radius: 6px;
    background-color: #c78d3770;
    color: #7c3812;
    margin-top: 6px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a {
    text-decoration: none;
}

.not-home .header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

.role__default {
    background: #4f46e5;
    color: #ffffff;
}

.role__admin {
    background: var(--craflord-yellow);
    color: #92400e;
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 2px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f43939;
    color: #f7e1de;
    border: none;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #ff4d4d,
        0 -4px 0 #ff4d4d,
        4px 0 0 #c03535,
        0 4px 0 #c03535;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow:
        -2px 0 0 #ff4d4d,
        0 -2px 0 #ff4d4d,
        2px 0 0 #c03535,
        0 4px 0 #c03535,
        0 8px 20px rgba(255, 77, 77, 0.3);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto !important;
}


/*  */

.cart-quantity-selector,
.chest-quantity-selector {
    display: inline-flex;
    align-items: center;
    background: #1d1b1a;
    /* Input arka planı */
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-qty-btn,
.chest-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #ffffff;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}


.cart-qty-btn.minus,
.chest-qty-btn.minus {
    background: #ef4444;
    color: white;
}

.cart-qty-btn.minus:hover,
.chest-qty-btn.minus:hover {
    background: #dc2626;
}


.cart-qty-btn.plus,
.chest-qty-btn.plus {
    background: #22c55e;
    color: white;
}

.cart-qty-btn.plus:hover,
.chest-qty-btn.plus:hover {
    background: #16a34a;
}


.cart-qty-input,
.chest-qty-input {
    width: 40px;
    height: 32px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    pointer-events: none;
}

/*  */