:root {
    --dark: #08122c;
    --wine: #3b1024;
    --pink: #c9599a;
    --pink-dark: #b84b8c;
    --soft: #f5e7ee;
    --soft-2: #fff8fb;
    --border: #ead0dd;
    --text: #101832;
    --muted: #5d6070;
    --green: #17c96b;
    --shadow: 0 22px 70px rgba(200, 142, 170, 0.22);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--soft);
    color: var(--text);
}

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

.topbar {
    background: var(--wine);
    color: white;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 170px;
    font-size: 13px;
    font-weight: 700;
}

.navbar {
    height: 70px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12%;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 1px 0 #eee;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
}

    .logo span {
        color: #cf7aaa;
    }

nav {
    display: flex;
    gap: 28px;
    font-weight: 800;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
}

    .nav-actions select {
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 8px;
        background: #fff;
    }

.pill {
    border-radius: 24px;
    padding: 10px 18px;
}

    .pill.pink {
        background: #cc3f96;
        color: white;
    }

    .pill.dark {
        background: var(--dark);
        color: white;
    }

    .pill.soft {
        background: #f1dfe9;
    }

.flash {
    max-width: 1120px;
    margin: 18px auto 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px 18px;
}

.hero {
    max-width: 1120px;
    margin: 34px auto 40px;
    background: linear-gradient(105deg, #fff 0%, #fff 54%, #faeef5 100%);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    padding: 42px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-home {
    align-items: center;
    min-height: 430px;
}

.hero.small {
    grid-template-columns: 1.4fr 0.6fr;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.02;
    margin: 10px 0 18px;
}

.hero p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.hero-actions {
    margin-top: 22px;
}

.hero-image-box {
    background: white;
    border-radius: 22px;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(200, 142, 170, 0.20);
    overflow: hidden;
}

.hero-logo-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-logo {
    background: white;
    border-radius: 22px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 45px rgba(200, 142, 170, 0.20);
}

    .hero-logo h2 {
        font-size: 58px;
        margin: 0;
    }

    .hero-logo span {
        color: #cf7aaa;
    }

.eyebrow {
    letter-spacing: 8px;
    color: #c25e9a;
    font-weight: 900;
    font-size: 13px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--dark);
    color: white;
    border-radius: 16px;
    padding: 14px 24px;
    font-weight: 900;
    cursor: pointer;
    margin: 8px 10px 8px 0;
}

    .btn:hover {
        transform: translateY(-1px);
    }

    .btn.outline {
        background: white;
        color: var(--dark);
        border: 1px solid var(--border);
    }

    .btn.green {
        background: var(--green);
    }

    .btn.full {
        width: 100%;
        margin-right: 0;
    }

.section,
.shop-wrap,
.two-col,
.auth,
.detail,
.panel {
    max-width: 1120px;
    margin: 28px auto;
}

    .section h2,
    .panel h1 {
        font-size: 34px;
    }

    .section > p {
        color: var(--muted);
    }

.cards {
    max-width: 1120px;
    margin: 24px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.card,
.panel,
.filters,
.product-card,
.summary,
.mini-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(200, 142, 170, 0.13);
}

    .card h3 {
        margin-top: 0;
    }

    .card p {
        color: var(--muted);
        line-height: 1.5;
    }

    .card b,
    .product-card small {
        color: #c25e9a;
        font-weight: 900;
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    overflow: hidden;
}

    .product-card img {
        width: 100%;
        height: 310px;
        object-fit: contain;
        background: #fff;
        border-radius: 14px;
    }

    .product-card h3 {
        font-size: 21px;
    }

    .product-card p {
        color: var(--muted);
        line-height: 1.5;
    }

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--dark);
    color: white;
    border-radius: 20px;
    padding: 8px 14px;
    font-weight: 900;
    font-size: 13px;
}

.price {
    font-size: 19px;
    font-weight: 900;
    color: var(--dark);
}

del {
    font-size: 14px;
    color: #999;
    margin-left: 8px;
}

.shop-wrap {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 22px;
}

.filters {
    position: sticky;
    top: 90px;
    height: max-content;
}

    .filters h2 {
        font-size: 30px;
    }

    .form label,
    .filters label {
        display: block;
        font-weight: 900;
        margin: 14px 0 8px;
    }

    .form input,
    .form textarea,
    .form select,
    .filters input,
    .filters select,
    .cart-item input,
    .info input {
        width: 100%;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 14px;
        background: var(--soft-2);
    }

.form textarea {
    min-height: 110px;
}

.check,
.pay {
    display: flex !important;
    gap: 10px;
    align-items: center;
    background: var(--soft-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
}

    .check input,
    .pay input {
        width: auto !important;
    }

.two-col {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 24px;
}

.summary {
    background: var(--wine);
    color: white;
    position: sticky;
    top: 95px;
    height: max-content;
}

    .summary p {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #ffffff22;
        padding-bottom: 12px;
    }

.cart-item {
    display: grid;
    grid-template-columns: 110px 1fr 120px 110px 60px;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    margin: 14px 0;
    background: var(--soft-2);
}

    .cart-item img {
        width: 100px;
        height: 130px;
        object-fit: contain;
        background: white;
        border-radius: 14px;
    }

.narrow {
    max-width: 620px;
}

.center {
    text-align: center;
}

.auth {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    background: linear-gradient(105deg, #fff, #faeef5);
    border-radius: 24px;
    padding: 42px;
}

    .auth h1 {
        font-size: 50px;
    }

.mini-card {
    margin: 16px 0;
    font-size: 17px;
}

.detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 24px;
    padding: 30px;
}

.gallery > img {
    width: 100%;
    height: 620px;
    object-fit: contain;
}

.thumbs {
    display: flex;
    gap: 10px;
    overflow: auto;
}

    .thumbs button {
        border: 1px solid var(--border);
        background: #fff;
        border-radius: 12px;
        padding: 6px;
        cursor: pointer;
    }

    .thumbs img {
        width: 70px;
        height: 90px;
        object-fit: contain;
    }

.info h1 {
    font-size: 42px;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.wide {
    grid-column: 1 / -1;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 18px;
    overflow: hidden;
}

td,
th {
    border-bottom: 1px solid var(--border);
    padding: 14px;
    text-align: left;
}

th {
    background: #fff0f7;
}

.table-img {
    width: 70px;
    height: 90px;
    object-fit: contain;
}

.image-admin {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

    .image-admin img {
        width: 100%;
        height: 180px;
        object-fit: contain;
        background: var(--soft-2);
        border-radius: 14px;
    }

.assistant-box {
    position: fixed;
    right: 24px;
    bottom: 76px;
    background: #cc78a8;
    color: white;
    border-radius: 18px;
    padding: 14px 44px 14px 16px;
    box-shadow: 0 20px 40px rgba(125, 49, 90, 0.40);
    z-index: 30;
}

    .assistant-box small {
        display: block;
    }

    .assistant-box button {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        border: 0;
        border-radius: 50%;
        background: #eaa6cb;
        color: white;
        width: 24px;
        height: 24px;
    }

.whatsapp {
    position: fixed;
    right: 28px;
    bottom: 20px;
    background: #20d16f;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 31;
}

@media (max-width: 900px) {
    .topbar {
        display: none;
    }

    .navbar {
        padding: 14px;
        flex-wrap: wrap;
        height: auto;
    }

    .nav-actions,
    nav {
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero,
    .auth,
    .detail,
    .two-col,
    .shop-wrap {
        grid-template-columns: 1fr;
        margin: 14px;
    }

    .hero {
        padding: 26px;
    }

        .hero h1,
        .auth h1 {
            font-size: 36px;
        }

    .hero-image-box {
        min-height: 260px;
    }

    .cards,
    .product-grid {
        grid-template-columns: 1fr;
        margin: 14px;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
    }

    .summary,
    .filters {
        position: static;
    }

    .gallery > img {
        height: 430px;
    }
}
/* ==========================================================
   CHATBOT BELLA24 + WHATSAPP
   ========================================================== */

.assistant-mini-box {
    position: fixed;
    right: 86px;
    bottom: 88px;
    background: #c9599a;
    color: white;
    border-radius: 18px;
    padding: 12px 46px 12px 16px;
    box-shadow: 0 20px 45px rgba(59, 16, 36, 0.25);
    z-index: 9998;
    cursor: pointer;
}

    .assistant-mini-box strong {
        display: block;
        font-size: 14px;
    }

    .assistant-mini-box small {
        display: block;
        font-size: 11px;
        margin-top: 2px;
    }

    .assistant-mini-box span {
        position: absolute;
        right: 13px;
        top: 50%;
        transform: translateY(-50%);
        background: #e8a3c9;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        text-align: center;
        line-height: 22px;
        font-weight: 900;
    }

.bella-chat-launcher {
    position: fixed;
    right: 28px;
    bottom: 88px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #c9599a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 18px 40px rgba(59, 16, 36, 0.25);
    z-index: 9999;
    font-size: 23px;
}

.bella-chat-box {
    position: fixed;
    right: 24px;
    bottom: 152px;
    width: 370px;
    height: 520px;
    background: white;
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(59, 16, 36, 0.30);
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 10000;
    border: 1px solid #ead0dd;
}

    .bella-chat-box.open {
        display: flex;
    }

.bella-chat-header {
    background: #3b1024;
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .bella-chat-header strong {
        display: block;
        font-size: 17px;
    }

    .bella-chat-header span {
        display: block;
        font-size: 12px;
        opacity: 0.85;
        margin-top: 3px;
    }

    .bella-chat-header button {
        background: rgba(255, 255, 255, 0.16);
        color: white;
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 22px;
        line-height: 1;
    }

.bella-chat-messages {
    flex: 1;
    padding: 14px;
    overflow-y: auto;
    background: #fff8fb;
}

.bella-message {
    padding: 11px 13px;
    margin-bottom: 10px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.45;
    max-width: 88%;
}

    .bella-message.bot {
        background: white;
        color: #101832;
        border: 1px solid #ead0dd;
        border-bottom-left-radius: 4px;
    }

    .bella-message.user {
        margin-left: auto;
        background: #c9599a;
        color: white;
        border-bottom-right-radius: 4px;
    }

    .bella-message.loading {
        opacity: 0.7;
        font-style: italic;
    }

.bella-chat-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid #ead0dd;
    background: white;
}

    .bella-chat-form input[type="text"] {
        flex: 1;
        border: 1px solid #ead0dd;
        border-radius: 14px;
        padding: 12px;
        outline: none;
        background: #fff8fb;
    }

    .bella-chat-form button {
        background: #08122c;
        color: white;
        border: none;
        border-radius: 14px;
        padding: 0 14px;
        font-weight: 800;
        cursor: pointer;
    }

.bella-upload {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid #ead0dd;
    background: #fff8fb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .bella-upload input {
        display: none;
    }

.bella-ai-product {
    background: #fff8fb;
    border: 1px solid #ead0dd;
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 9px;
}

    .bella-ai-product b {
        color: #08122c;
    }

    .bella-ai-product span {
        color: #c9599a;
        font-weight: 900;
    }

    .bella-ai-product a {
        display: inline-block;
        margin-top: 6px;
        color: #c9599a;
        font-weight: 900;
    }

.whatsapp {
    position: fixed;
    right: 28px;
    bottom: 20px;
    background: #20d16f;
    color: white;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 4px solid white;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    font-size: 24px;
    z-index: 9999;
}

@media (max-width: 600px) {
    .assistant-mini-box {
        right: 76px;
        bottom: 86px;
        padding: 10px 40px 10px 12px;
    }

    .bella-chat-launcher {
        right: 18px;
        bottom: 86px;
    }

    .bella-chat-box {
        right: 12px;
        left: 12px;
        width: auto;
        height: 70vh;
        bottom: 148px;
    }

    .whatsapp {
        right: 18px;
        bottom: 18px;
    }
}
/* ==========================================================
   CONTUL MEU / COMENZI / RETUR
   ========================================================== */

.order-info-box,
.return-status {
    background: #fff8fb;
    border: 1px solid #ead0dd;
    border-radius: 18px;
    padding: 18px;
    margin: 18px 0;
}

    .order-info-box p,
    .return-status p {
        margin: 8px 0;
    }

.client-order-items {
    display: grid;
    gap: 14px;
    margin: 18px 0;
}

.client-order-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    align-items: center;
    background: #fff8fb;
    border: 1px solid #ead0dd;
    border-radius: 18px;
    padding: 14px;
}

    .client-order-item img {
        width: 90px;
        height: 120px;
        object-fit: contain;
        background: white;
        border-radius: 14px;
    }

    .client-order-item h3 {
        margin: 0 0 8px;
    }

    .client-order-item p {
        margin: 5px 0;
        color: #5d6070;
    }

.client-order-no-img {
    width: 90px;
    height: 120px;
    background: white;
    border: 1px solid #ead0dd;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9599a;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.return-form textarea {
    min-height: 130px;
}
/* ==========================================================
   PRODUCT DETAIL QUANTITY SELECTOR
   ========================================================== */

.add-cart-form {
    margin-top: 22px;
}

    .add-cart-form label {
        display: block;
        font-weight: 900;
        margin-bottom: 8px;
    }

.quantity-selector {
    display: flex;
    align-items: center;
    width: 190px;
    height: 52px;
    border: 1px solid #ead0dd;
    border-radius: 16px;
    overflow: hidden;
    background: #fff8fb;
    margin-bottom: 16px;
}

    .quantity-selector button {
        width: 52px;
        height: 52px;
        border: none;
        background: #c9599a;
        color: white;
        font-size: 24px;
        font-weight: 900;
        cursor: pointer;
    }

        .quantity-selector button:hover {
            background: #b84b8c;
        }

    .quantity-selector input {
        width: 86px;
        height: 52px;
        border: none;
        text-align: center;
        font-size: 18px;
        font-weight: 900;
        background: white;
        color: #08122c;
        outline: none;
    }

.no-image {
    width: 100%;
    height: 620px;
    background: #fff8fb;
    border: 1px solid #ead0dd;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9599a;
    font-weight: 900;
}

.product-meta {
    background: #fff8fb;
    border: 1px solid #ead0dd;
    border-radius: 16px;
    padding: 14px 18px;
    margin: 18px 0;
}

    .product-meta p {
        margin: 7px 0;
    }
/* ==========================================================
   SIZE SELECTOR
   ========================================================== */

.size-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 20px;
}

    .size-selector label {
        margin: 0;
        cursor: pointer;
    }

    .size-selector input {
        display: none;
    }

    .size-selector span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 48px;
        height: 42px;
        padding: 0 14px;
        border-radius: 14px;
        background: #fff8fb;
        border: 1px solid #ead0dd;
        color: #08122c;
        font-weight: 900;
    }

    .size-selector input:checked + span {
        background: #c9599a;
        color: white;
        border-color: #c9599a;
    }
/* ==========================================================
   CART IMPROVEMENTS
   ========================================================== */

.cart-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

    .cart-tags span {
        display: inline-flex;
        align-items: center;
        background: #fff8fb;
        border: 1px solid #ead0dd;
        border-radius: 999px;
        padding: 7px 12px;
        font-size: 13px;
        font-weight: 800;
        color: #08122c;
    }

.cart-unit-price {
    color: #c9599a;
    font-weight: 900;
    margin-top: 8px;
}

.cart-line-total {
    text-align: right;
}

    .cart-line-total small {
        display: block;
        color: #5d6070;
        margin-bottom: 6px;
    }

    .cart-line-total strong {
        color: #08122c;
        font-size: 17px;
    }

.cart-remove {
    color: #b9003c;
    font-weight: 900;
    font-size: 13px;
}

.cart-no-img {
    width: 100px;
    height: 130px;
    background: white;
    border: 1px solid #ead0dd;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9599a;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.summary-total {
    font-size: 20px;
}

.summary-note {
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px;
    line-height: 1.45;
    font-size: 14px;
}
/* ==========================================================
   CHECKOUT IMPROVEMENTS
   ========================================================== */

.checkout-items {
    display: grid;
    gap: 12px;
    margin: 18px 0;
}

.checkout-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 10px;
}

    .checkout-item img,
    .checkout-no-img {
        width: 64px;
        height: 84px;
        object-fit: contain;
        background: white;
        border-radius: 12px;
    }

.checkout-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9599a;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
}

.checkout-item strong {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 5px;
}

.checkout-item small {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 2px;
}
/* ==========================================================
   ADMIN ORDER DETAIL
   ========================================================== */

.admin-order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 22px 0;
}

.admin-order-card {
    background: white;
    border: 1px solid #ead0dd;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(200, 142, 170, 0.13);
    margin: 22px 0;
}

    .admin-order-card h2 {
        margin-top: 0;
        color: #08122c;
    }

    .admin-order-card p {
        line-height: 1.5;
    }

.admin-order-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .admin-order-product img {
        width: 54px;
        height: 70px;
        object-fit: contain;
        background: #fff8fb;
        border-radius: 10px;
        border: 1px solid #ead0dd;
    }

.admin-alert {
    background: #fff8fb;
    border: 1px solid #ead0dd;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 16px;
}

    .admin-alert.success {
        background: #f0fff6;
        border-color: #9be6b7;
    }

    .admin-alert a {
        color: #c9599a;
        font-weight: 900;
    }

@media (max-width: 900px) {
    .admin-order-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================
   INVOICE
   ========================================================== */

.invoice-panel {
    background: white;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 2px solid #ead0dd;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

    .invoice-header h1 {
        font-size: 42px;
        margin: 0;
        color: #08122c;
    }

    .invoice-header h2 {
        font-size: 34px;
        margin: 0 0 12px;
        color: #c9599a;
    }

.invoice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.invoice-box {
    background: #fff8fb;
    border: 1px solid #ead0dd;
    border-radius: 18px;
    padding: 18px;
}

    .invoice-box h3 {
        margin-top: 0;
    }

.invoice-totals {
    max-width: 360px;
    margin-left: auto;
    margin-top: 24px;
    background: #fff8fb;
    border: 1px solid #ead0dd;
    border-radius: 18px;
    padding: 18px;
}

    .invoice-totals p {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #ead0dd;
        padding-bottom: 10px;
    }

.invoice-total-final {
    font-size: 20px;
    border-bottom: 0 !important;
}

.invoice-footer {
    margin-top: 36px;
    color: #5d6070;
}

@media print {
    .topbar,
    .navbar,
    .assistant-mini-box,
    .bella-chat-launcher,
    .bella-chat-box,
    .whatsapp,
    .no-print {
        display: none !important;
    }

    body {
        background: white !important;
    }

    .panel {
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
}
/* ==========================================================
   CARD PAYMENT SIMULATED
   ========================================================== */

.card-payment-box {
    display: none;
    background: #fff8fb;
    border: 1px solid #ead0dd;
    border-radius: 20px;
    padding: 20px;
    margin: 18px 0;
}

    .card-payment-box.open {
        display: block;
    }

    .card-payment-box h2 {
        margin-top: 0;
        color: #08122c;
    }

.card-payment-note {
    color: #5d6070;
    font-size: 14px;
    line-height: 1.5;
}

.card-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fake-payment-status {
    background: white;
    border: 1px solid #ead0dd;
    color: #5d6070;
    border-radius: 14px;
    padding: 12px;
    margin-top: 14px;
    font-weight: 800;
}

    .fake-payment-status.success {
        background: #f0fff6;
        border-color: #9be6b7;
        color: #18763a;
    }

@media (max-width: 700px) {
    .card-payment-grid {
        grid-template-columns: 1fr;
    }
}
.btn.danger {
    background: #b9003c;
    color: white;
}
.admin-top-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn.danger {
    background: #b9003c;
    color: white;
}
.easybox-options,
.easybox-fields {
    margin-top: 14px;
}

.easybox-fields {
    display: none;
}
/* ============================= */
/* FACTURĂ - PRINT PE O PAGINĂ */
/* ============================= */

@media print {
    @page {
        size: A4 portrait;
        margin: 7mm;
    }

    html,
    body {
        background: #ffffff !important;
        color: #000000 !important;
        font-size: 11px !important;
        line-height: 1.25 !important;
    }

    .topbar,
    .navbar,
    .assistant-mini-box,
    .bella-chat-launcher,
    .bella-chat-box,
    .whatsapp,
    .flash,
    .no-print,
    button,
    .btn {
        display: none !important;
    }

    main {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .invoice-page,
    .invoice-card,
    .content-card,
    .admin-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 8px !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: #ffffff !important;
    }

    h1 {
        font-size: 24px !important;
        margin: 0 0 6px 0 !important;
    }

    h2 {
        font-size: 18px !important;
        margin: 0 0 6px 0 !important;
    }

    h3 {
        font-size: 14px !important;
        margin: 5px 0 !important;
    }

    p {
        margin: 2px 0 !important;
    }

    .invoice-header,
    .invoice-parties,
    .invoice-summary,
    .invoice-footer {
        margin-bottom: 7px !important;
        page-break-inside: avoid !important;
    }

    table {
        width: 100% !important;
        border-collapse: collapse !important;
        font-size: 10px !important;
        page-break-inside: avoid !important;
    }

    th,
    td {
        padding: 4px 5px !important;
        border-bottom: 1px solid #dddddd !important;
    }

    .invoice-total,
    .invoice-summary {
        page-break-inside: avoid !important;
    }

    * {
        page-break-before: auto !important;
        page-break-after: auto !important;
    }
}
.admin-login-page {
    min-height: 560px;
    padding: 70px 20px;
    background: linear-gradient(135deg, #fff7fb, #f7e7f0);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.admin-login-card {
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(61, 9, 35, 0.18);
    text-align: center;
    border: 1px solid #f1cfe0;
}

.admin-lock {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #f6dce9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.admin-login-card h1 {
    margin: 0;
    color: #071433;
    font-size: 32px;
}

.admin-login-card p {
    margin: 8px 0 20px;
    color: #777;
    font-size: 15px;
}

.admin-divider {
    color: #d64f9a;
    font-size: 24px;
    margin: 15px 0 25px;
    border-top: 1px solid #f1cfe0;
    border-bottom: 1px solid #f1cfe0;
    padding: 8px 0;
}

.admin-field {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff9fc;
    border: 1px solid #efbdd5;
    border-radius: 14px;
    padding: 12px 15px;
    margin-bottom: 18px;
    text-align: left;
}

    .admin-field span {
        font-size: 22px;
    }

    .admin-field div {
        width: 100%;
    }

    .admin-field label {
        display: block;
        font-weight: 700;
        color: #071433;
        margin-bottom: 4px;
        font-size: 14px;
    }

    .admin-field input {
        width: 100%;
        border: none;
        background: transparent;
        outline: none;
        font-size: 15px;
        color: #071433;
    }

.admin-login-btn {
    width: 100%;
    border: none;
    background: #071433;
    color: white;
    padding: 16px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    margin-top: 5px;
}

    .admin-login-btn:hover {
        background: #0d1f4a;
    }

.admin-restricted {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #f1cfe0;
    color: #777;
    font-size: 14px;
}

.admin-error {
    background: #ffe5ee;
    color: #8a0030;
    border: 1px solid #f3aac6;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 700;
}

.checkout-alert {
    margin: 18px 0;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff4f8;
    border: 1px solid #f5b6cd;
    color: #5c1230;
    line-height: 1.55;
}

.checkout-alert a {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
    color: #128c7e;
    text-decoration: none;
}

.disabled-pay {
    opacity: 0.65;
    cursor: not-allowed;
}

.disabled-card-box {
    display: block;
    opacity: 1;
}


.language-select {
    min-width: 108px;
    height: 44px;
    padding: 0 12px;
    border-radius: 22px;
    border: 1px solid #e8bfd2;
    background: #fff7fb;
    font-weight: 800;
    font-size: 15px;
    color: #10162f;
    cursor: pointer;
}

.language-select:focus {
    outline: 3px solid rgba(210, 63, 151, .18);
}
