/* =====================================================
   Aurora-Garten – Sidebar
===================================================== */

.shop-sidebar {
    width: 260px;
    flex-shrink: 0;
    margin-left: 20px;
}

/* Sidebar Box */

.sidebar-box {
    background: #FAFBF8;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.sidebar-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 17px;
}

/* =====================================================
   Sidebar – Profilbereich Styling
===================================================== */

.sidebar-login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
    width: 100%;
}

.sidebar-login-form input {
    width: 100%;
    box-sizing: border-box;   /* wichtig */
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #DCDCDC;
    font-size: 14px;
}

.sidebar-login-form input:focus {
    outline: none;
    border-color: #6FAE45;
}

/* =====================================================
   Sidebar Buttons
===================================================== */

.sidebar-button-full {
    display: block;
    width: 100%;
    box-sizing: border-box;     /* sorgt für gleiche Breite */
    text-align: center;
    text-decoration: none;
}

/* Kompakte Sidebar-Button-Version */

.shop-sidebar .button_1,
.shop-sidebar .button_2,
.shop-sidebar .button_3 {
    display: block;
    width: 100%;
    box-sizing: border-box;

    padding: 8px 12px;          /* kompakter */
    font-size: 13px;

    height: auto;
    min-height: unset;
    line-height: 1.2;

    border-radius: 8px;
}

/* Abstand zwischen Login & Registrieren */

.sidebar-register-btn {
    margin-top: 8px;
}

.sidebar-profile-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =====================================================
   Mini Cart Styling
===================================================== */

.mini-cart-item {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.mini-cart-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.mini-cart-qty-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini-cart-inline {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.mini-cart-inline form {
    margin: 0;
}

.mini-cart-qty {
    width: 55px;
    padding: 4px 6px;
    border-radius: 6px;
    border: 1px solid #DCDCDC;
    font-size: 13px;
}

.mini-cart-update,
.mini-cart-remove {
    padding: 4px 6px;
    font-size: 13px;
    border-radius: 6px;
    border: 1px solid #DCDCDC;
    background: #ffffff;
    cursor: pointer;
}

.mini-cart-update:hover {
    background: #e6f4dc;
    border-color: #6FAE45;
}

.mini-cart-remove:hover {
    background: #fde8e8;
    border-color: #cc4444;
}

.mini-cart-line-total {
    font-size: 13px;
    margin-top: 6px;
    text-align: right;
}

.mini-cart-total {
    margin-top: 12px;
    font-weight: 600;
    text-align: right;
}

/* Einzelpreis im Mini-Cart */

.mini-cart-price {
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
}

/* Kostenloser Versand Hinweis */

.mini-cart-free-shipping-hint {
    margin-top: 10px;
    padding: 8px;
    background: #f3f7ec;
    border-radius: 8px;
    font-size: 13px;
}

.mini-cart-free-shipping-success {
    margin-top: 10px;
    padding: 8px;
    background: #e6f4dc;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #4a7c2f;
}

/* Zeilensumme inline neben Buttons */

.mini-cart-line-total-inline {
    margin-left: auto;
    font-weight: 600;
    font-size: 13px;
}

/* Kostenloser Versand Hinweis (ohne Emoji) */

.mini-cart-free-shipping-hint {
    margin-top: 6px;
    padding: 6px 8px;
    background: #f3f7ec;
    border-radius: 6px;
    font-size: 13px;
}