﻿:root {
    --bg: #fff8f5;
    --surface: #f5ece7;
    --surface2: #efe6e2;
    --green: #45553c;
    --green2: #5d6d53;
    --text: #1e1b18;
    --muted: #6f6a64;
    --border: #d8cec7;
    --brown: #6f5957;
}

* {
    box-sizing: border-box
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans',Arial,sans-serif;
    margin: 0
}

a {
    text-decoration: none;
    color: inherit
}

.db-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px
}

.db-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,248,245,.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(216,206,199,.55)
}

.db-nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.db-logo {
    font-size: 32px;
    font-weight: 600;
    color: var(--green)
}

.db-menu {
    display: flex;
    gap: 32px;
    align-items: center
}

    .db-menu a {
        font-size: 15px;
        color: var(--text)
    }

        .db-menu a:hover {
            color: var(--green)
        }

.db-icons {
    display: flex;
    gap: 20px;
    align-items: center
}

.db-icon {
    font-size: 24px;
    color: var(--green)
}

.db-footer {
    background: var(--surface);
    padding: 70px 0;
    margin-top: 90px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px
}

.footer-title {
    font-size: 26px;
    color: var(--green);
    margin-bottom: 16px
}

.footer-links a, .footer-text {
    display: block;
    color: #5e5953;
    margin-bottom: 10px;
    line-height: 1.7
}

.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--green);
    color: white !important;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 600;
    transition: .25s
}

    .btn-green:hover {
        background: #31412c
    }

.btn-outline-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--green);
    color: var(--green) !important;
    padding: 12px 27px;
    border-radius: 999px;
    font-weight: 600;
    background: transparent
}

.db-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(93,109,83,.08);
    border: 1px solid rgba(216,206,199,.45)
}

.input-soft {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    padding: 15px 22px;
    outline: none
}

    .input-soft:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 3px rgba(69,85,60,.08)
    }

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    align-items: center
}

.hero-content {
    padding-left: 64px;
    padding-right: 40px
}

.badge-soft {
    display: inline-block;
    background: #f6d9d6;
    color: #735d5b;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    margin-bottom: 24px
}

.hero-title {
    font-size: 56px;
    line-height: 1.12;
    font-weight: 300;
    color: var(--green);
    margin-bottom: 24px
}

.hero-desc {
    color: #555;
    line-height: 1.8;
    max-width: 540px
}

.hero-image {
    height: 650px;
    overflow: hidden
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 88px 0 34px
}

    .section-head h2 {
        font-size: 32px;
        font-weight: 500;
        color: var(--green);
        margin: 0 0 8px
    }

    .section-head p {
        color: var(--muted);
        margin: 0
    }

.category-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px
}

.category-card {
    position: relative;
    min-height: 275px;
    border-radius: 14px;
    overflow: hidden
}

    .category-card.tall {
        min-height: 588px
    }

    .category-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: .4s
    }

    .category-card:hover img {
        transform: scale(1.04)
    }

.category-label {
    position: absolute;
    left: 28px;
    bottom: 26px;
    color: white;
    text-shadow: 0 2px 18px rgba(0,0,0,.35)
}

    .category-label h3 {
        margin: 0 0 6px;
        font-size: 22px
    }

.products-band {
    background: var(--surface);
    margin-top: 90px;
    padding: 85px 0
}

.center-title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 44px
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px
}

.product-card {
    background: white;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 18px 50px rgba(93,109,83,.08);
    transition: .3s
}

    .product-card:hover {
        transform: translateY(-6px)
    }

    .product-card img {
        width: 100%;
        height: 270px;
        object-fit: cover;
        border-radius: 10px
    }

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin: 16px 0 6px
}

.product-desc {
    color: var(--muted);
    font-size: 14px;
    min-height: 42px
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--green);
    font-weight: 700;
    margin: 8px 0 16px
}

.about {
    padding: 90px 0
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.about img {
    width: 100%;
    border-radius: 16px
}

.about h2 {
    font-size: 42px;
    font-weight: 300;
    color: var(--green);
    margin-bottom: 28px
}

.about-item {
    margin-bottom: 24px
}

    .about-item h4 {
        color: var(--green);
        margin-bottom: 8px
    }

.newsletter-soft {
    background: var(--surface2);
    padding: 72px 0;
    text-align: center
}

    .newsletter-soft h2 {
        font-size: 30px;
        color: var(--green);
        font-weight: 500
    }

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 26px
}

    .newsletter-form input {
        max-width: 430px;
        background: white
    }

.page-title {
    font-size: 46px;
    font-weight: 300;
    color: var(--green);
    margin: 55px 0 10px
}

.subtext {
    color: var(--muted);
    line-height: 1.7
}

.shop-tools {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 36px 0
}

    .shop-tools input {
        max-width: 420px
    }

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    padding: 70px 0
}

.detail-img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 18px
}

.detail-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--green);
    margin-bottom: 18px
}

.detail-price {
    font-size: 28px;
    color: var(--green);
    font-weight: 700
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(93,109,83,.08)
}

    .cart-table th, .cart-table td {
        padding: 18px;
        border-bottom: 1px solid #eee;
        text-align: left
    }

    .cart-table th {
        background: var(--green);
        color: white
    }

.cart-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr .95fr;
    gap: 70px;
    padding: 70px 0
}

.step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 25px;
    color: var(--green);
    margin: 45px 0 24px
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #607a59;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.payment-box {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px
}

.order-summary {
    background: var(--surface);
    border-radius: 16px;
    padding: 34px;
    position: sticky;
    top: 95px
}

.summary-item {
    display: flex;
    gap: 18px;
    margin-bottom: 22px
}

    .summary-item img {
        width: 90px;
        height: 90px;
        border-radius: 10px;
        object-fit: cover
    }

.summary-line, .summary-total {
    display: flex;
    justify-content: space-between;
    margin: 12px 0
}

.summary-total {
    font-size: 24px;
    color: var(--green);
    font-weight: 700;
    margin-top: 24px
}

.coupon {
    display: flex;
    gap: 10px;
    margin-top: 45px
}

    .coupon input {
        background: white
    }

.auth-page {
    min-height: 680px;
    display: grid;
    grid-template-columns: 1fr 1fr
}

.auth-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.auth-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: white;
    border-radius: 18px;
    padding: 42px;
    box-shadow: 0 20px 55px rgba(93,109,83,.1)
}

    .auth-card h1 {
        font-size: 38px;
        font-weight: 300;
        color: var(--green);
        margin-bottom: 12px
    }

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 76px)
}

.admin-sidebar {
    background: #26351f;
    color: white;
    padding: 30px 20px
}

    .admin-sidebar h2 {
        font-size: 25px;
        margin-bottom: 30px
    }

    .admin-sidebar a {
        display: block;
        color: #e7efe0;
        padding: 13px 16px;
        border-radius: 12px;
        margin-bottom: 8px
    }

        .admin-sidebar a:hover {
            background: rgba(255,255,255,.1)
        }

.admin-main {
    padding: 40px;
    background: #fbf3ef
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 30px
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,.05)
}

    .stat-card h3 {
        font-size: 15px;
        color: var(--muted);
        margin-bottom: 12px
    }

    .stat-card strong {
        font-size: 32px;
        color: var(--green)
    }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.05)
}

    .admin-table th, .admin-table td {
        padding: 16px;
        border-bottom: 1px solid #eee;
        text-align: left
    }

    .admin-table th {
        background: #e9e1dc;
        color: var(--green)
    }

.admin-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px
}

.btn-sm-soft {
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px
}

.btn-edit {
    background: #f3e3bd;
    color: #6a4b00
}

.btn-delete {
    background: #ffe0dc;
    color: #93000a
}

.form-card {
    max-width: 780px;
    background: white;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 20px 55px rgba(0,0,0,.06)
}

label {
    display: block;
    margin-bottom: 8px;
    color: #504b46
}

.mb-18 {
    margin-bottom: 18px
}

@media(max-width:900px) {
    .db-container {
        padding: 0 20px
    }

    .db-menu {
        display: none
    }

    .hero, .category-grid, .about-grid, .detail-grid, .checkout-grid, .auth-page, .admin-layout {
        grid-template-columns: 1fr
    }

    .hero-content {
        padding: 45px 20px
    }

    .hero-image {
        height: 420px
    }

    .hero-title {
        font-size: 40px
    }

    .product-grid, .shop-grid, .stat-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .admin-sidebar {
        position: relative
    }

    .newsletter-form {
        flex-direction: column
    }

    .coupon {
        flex-direction: column
    }
}

body {
    background: #fbf3ef !important;
    color: #203d26;
}

.home-hero {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 620px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-left {
    padding: 170px 70px 70px;
}

    .hero-left h1 {
        font-size: 46px;
        font-weight: 400;
        margin: 18px 0;
    }

    .hero-left p {
        max-width: 470px;
        font-size: 15px;
        line-height: 1.7;
        color: #555;
    }

.badge-soft {
    background: #f0deda;
    color: #8b625c;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.hero-right img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.btn-green {
    background: #263f26;
    color: white !important;
    border-radius: 28px;
    padding: 12px 26px;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-outline-soft {
    border: 1px solid #263f26;
    color: #263f26;
    border-radius: 28px;
    padding: 12px 26px;
    text-decoration: none;
    margin-left: 12px;
}

.db-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 35px;
}

.home-section {
    padding: 80px 35px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 35px;
}

    .section-head h2 {
        font-size: 30px;
        font-weight: 400;
    }

    .section-head p {
        color: #666;
    }

    .section-head a {
        color: #263f26;
        text-decoration: none;
    }

.category-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.88fr;
    gap: 25px;
}

.category-side {
    display: grid;
    gap: 25px;
}

.category-box {
    position: relative;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
}

.category-large {
    height: 420px;
}

.category-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-box div {
    position: absolute;
    left: 28px;
    bottom: 22px;
    color: white;
}

.category-box h3 {
    margin: 0;
    font-size: 22px;
}

.category-box p {
    margin: 4px 0 0;
}

.best-seller {
    background: #f3e9e3;
    padding: 80px 0;
}

.center-title {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-soft-card {
    background: white;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

    .product-soft-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 6px;
    }

.product-info {
    padding-top: 18px;
}

.product-tag {
    background: #f2d8d5;
    color: #9b5b53;
    border-radius: 20px;
    padding: 3px 8px;
    font-size: 12px;
}

.product-name-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
}

    .product-name-row h3 {
        font-size: 18px;
        font-weight: 500;
    }

    .product-name-row span {
        font-weight: 500;
    }

.product-info p {
    font-size: 14px;
    color: #666;
}

.btn-add-cart {
    display: block;
    border: 1px solid #263f26;
    color: #263f26;
    border-radius: 25px;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}

.about-home {
    padding: 90px 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
}

.about-item {
    margin-bottom: 28px;
}

    .about-item h4 {
        margin-bottom: 8px;
    }

    .about-item p {
        color: #666;
    }

.newsletter-home {
    background: #eaded8;
    text-align: center;
    padding: 70px 20px;
}

    .newsletter-home h2 {
        font-weight: 400;
    }

    .newsletter-home p {
        color: #666;
    }

    .newsletter-home input {
        width: 420px;
        max-width: 80%;
        border: none;
        border-radius: 25px;
        padding: 13px 20px;
    }

    .newsletter-home button {
        background: #263f26;
        color: white;
        border: none;
        border-radius: 25px;
        padding: 13px 24px;
    }

@media(max-width: 768px) {
    .home-hero,
    .category-layout,
    .product-grid,
    .about-home {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 70px 30px;
    }

    .hero-right img {
        height: 420px;
    }
}

body {
    background: #fbf3ef;
    color: #244026;
}

.shop-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 25px;
}

.shop-title {
    font-size: 54px;
    font-weight: 400;
    margin-bottom: 15px;
}

.shop-subtitle {
    max-width: 650px;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 35px;
    margin-top: 80px;
}

.filter-box h4 {
    font-size: 15px;
    letter-spacing: 1px;
    margin: 25px 0 15px;
}

.filter-box label {
    display: block;
    margin-bottom: 12px;
    color: #45533f;
    font-size: 16px;
}

.filter-box input {
    margin-right: 8px;
    accent-color: #314d2e;
}

.filter-line {
    border-top: 1px solid #d8ccc5;
    margin: 28px 0;
}

.tip-box {
    background: #f5d8d5;
    color: #7b5d56;
    padding: 22px;
    border-radius: 14px;
    margin-top: 35px;
    font-size: 14px;
}

    .tip-box strong {
        display: block;
        color: #6b4c45;
        margin-bottom: 8px;
    }

.product-grid-shop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.shop-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    position: relative;
}

.shop-card-img {
    position: relative;
}

.shop-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #f5d8d5;
    color: #8d6058;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 12px;
    text-transform: uppercase;
}

.shop-card-body {
    padding: 28px 32px 32px;
}

    .shop-card-body h3 {
        font-size: 21px;
        font-weight: 400;
        min-height: 55px;
        margin-bottom: 8px;
    }

    .shop-card-body p {
        color: #666;
        font-style: italic;
        margin-bottom: 30px;
    }

.shop-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-price {
    font-size: 28px;
    color: #244026;
}

.btn-quick {
    background: #314d2e;
    color: white;
    text-decoration: none;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

    .btn-quick:hover {
        color: white;
        background: #233b21;
    }

.empty-box {
    background: white;
    padding: 30px;
    border-radius: 14px;
    color: #777;
}

@media(max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .product-grid-shop {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .product-grid-shop {
        grid-template-columns: 1fr;
    }

    .shop-title {
        font-size: 38px;
    }
}

.payment-detail {
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 16px;
    background: #f8f4ef;
    line-height: 1.9;
}

.payment-option {
    display: block;
    margin-bottom: 14px;
    cursor: pointer;
}

.user-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-icon {
    font-size: 26px;
    color: #314d2e;
}

.user-name {
    font-weight: 600;
    color: #314d2e;
    font-size: 15px;
}

.logout-btn {
    text-decoration: none;
    background: #314d2e;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    transition: 0.3s;
}

    .logout-btn:hover {
        background: #1f351d;
    }

.success-toast {
    position: fixed;
    top: 90px;
    right: 30px;
    background: #314d2e;
    color: white;
    padding: 18px 28px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}
/* USER HEADER */
.user-profile-link,
.user-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-profile-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
}

.user-icon {
    font-size: 24px;
    color: var(--green);
}

/* PROFILE PAGE */
.profile-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    color: var(--green);
}

.profile-sidebar,
.profile-welcome > div:first-child,
.voucher-box,
.profile-card,
.profile-small-card,
.profile-member-card {
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
}

.profile-sidebar {
    background: var(--bg);
    border: 1px solid var(--border);
    height: fit-content;
}

.profile-user {
    text-align: center;
    margin-bottom: 30px;
}

    .profile-user img {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        object-fit: cover;
    }

.profile-menu {
    display: block;
    padding: 14px 18px;
    border-radius: 28px;
    color: var(--green);
    text-decoration: none;
    margin-bottom: 10px;
}

    .profile-menu.active {
        background: var(--green2);
        color: white;
        font-weight: 700;
    }

.profile-logout {
    display: block;
    margin-top: 28px;
    color: #c21b1b;
    text-decoration: none;
    font-weight: 700;
}

.profile-welcome {
    display: grid;
    grid-template-columns: 1fr 270px;
    gap: 24px;
    margin-bottom: 30px;
}

.voucher-box {
    background: var(--green2);
    color: white;
    text-align: center;
}

.point-bar {
    height: 8px;
    background: #eee5df;
    border-radius: 20px;
    margin-top: 25px;
}

    .point-bar span {
        display: block;
        width: 75%;
        height: 100%;
        background: var(--green);
        border-radius: 20px;
    }

.point-text {
    text-align: right;
    margin-top: 10px;
}

.profile-card-head,
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    .order-table th,
    .order-table td {
        padding: 18px 8px;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

.status {
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
}

    .status.delivery {
        background: #d8edcf;
    }

    .status.done {
        background: #e7ded8;
    }

.profile-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.profile-member-card {
    background: #fbefec;
}

.barcode {
    background: white;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    letter-spacing: 4px;
    margin-top: 25px;
}

@media(max-width:900px) {
    .profile-page,
    .profile-welcome,
    .profile-bottom {
        grid-template-columns: 1fr;
    }
}

.success-box {
    background: #dff6dd;
    color: #1e4620;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 700;
}

.journal-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

    .journal-hero h1 {
        font-size: 48px;
        font-weight: 300;
        color: var(--green);
    }

    .journal-hero p {
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 28px;
    }

    .journal-hero img {
        width: 100%;
        height: 560px;
        object-fit: cover;
        border-radius: 22px;
    }

.journal-tabs {
    background: var(--surface);
    padding: 28px;
    text-align: center;
}

    .journal-tabs a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: 999px;
        margin: 0 6px;
        background: #eee3dd;
        color: var(--green);
    }

    .journal-tabs .active {
        background: var(--green);
        color: white;
    }

.journal-grid {
    padding: 75px 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.journal-card h3 {
    font-size: 24px;
    color: var(--green);
    font-weight: 500;
    margin: 16px 0 10px;
}

.journal-card p {
    color: var(--muted);
    line-height: 1.7;
}

.journal-img {
    position: relative;
}

    .journal-img img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 12px;
    }

    .journal-img span {
        position: absolute;
        top: 14px;
        left: 14px;
        background: #f6d9d6;
        color: #735d5b;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 12px;
    }

.journal-pages {
    text-align: center;
    margin-bottom: 70px;
}

    .journal-pages a {
        display: inline-flex;
        width: 38px;
        height: 38px;
        border: 1px solid var(--border);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        margin: 0 4px;
    }

    .journal-pages .active {
        background: var(--green);
        color: white;
    }

.journal-newsletter {
    background: var(--surface);
    text-align: center;
    padding: 80px 20px;
}

    .journal-newsletter h2 {
        font-size: 42px;
        color: var(--green);
        font-weight: 300;
    }

    .journal-newsletter p {
        color: var(--muted);
    }

    .journal-newsletter input {
        width: 360px;
        max-width: 80%;
        border: 1px solid var(--border);
        border-radius: 999px;
        padding: 14px 20px;
    }

    .journal-newsletter button {
        background: var(--green);
        color: white;
        border: none;
        border-radius: 999px;
        padding: 14px 26px;
    }

@media(max-width:900px) {
    .journal-hero,
    .journal-grid {
        grid-template-columns: 1fr;
    }

        .journal-hero img {
            height: 380px;
        }
}

.admin-dashboard {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
    background: #fff8f5;
}

.admin-side {
    background: #f5ece7;
    border-right: 1px solid #ddd0c8;
    padding: 28px 18px;
}

    .admin-side h2 {
        color: #314d2e;
        margin-bottom: 30px;
    }

    .admin-side a {
        display: block;
        padding: 15px 18px;
        border-radius: 10px;
        margin-bottom: 8px;
        color: #314d2e;
        text-decoration: none;
    }

        .admin-side a.active,
        .admin-side a:hover {
            background: #5d7555;
            color: white;
        }

.admin-content {
    padding: 42px;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

    .admin-top h1 {
        font-size: 34px;
        color: #314d2e;
        margin: 0;
    }

    .admin-top p {
        color: #6f6a64;
    }

.admin-btn {
    background: #314d2e;
    color: white;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.admin-stat-card {
    background: white;
    border: 1px solid #eee2dc;
    border-radius: 14px;
    padding: 28px;
}

    .admin-stat-card p {
        margin: 0 0 12px;
        color: #444;
    }

    .admin-stat-card h2 {
        color: #314d2e;
        font-size: 28px;
        margin: 0 0 8px;
    }

    .admin-stat-card span {
        color: #888;
        font-size: 13px;
    }

.sales-card,
.recent-orders {
    background: white;
    border: 1px solid #eee2dc;
    border-radius: 14px;
    padding: 30px;
    margin-top: 34px;
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .card-head h2 {
        color: #314d2e;
        font-size: 26px;
    }

    .card-head button {
        border: 1px solid #d8cec7;
        background: #fff8f5;
        padding: 10px 18px;
        border-radius: 999px;
    }

.chart-bars {
    height: 260px;
    display: flex;
    align-items: end;
    gap: 38px;
    padding: 30px 20px 0;
    border-top: 1px solid #eee;
}

    .chart-bars span {
        width: 16px;
        background: #dfe4dc;
        border-radius: 20px;
        display: block;
    }

.recent-orders table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.recent-orders th,
.recent-orders td {
    padding: 18px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.recent-orders th {
    color: #777;
    font-size: 13px;
}

.status {
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
}

    .status.done {
        background: #d8edcf;
    }

    .status.delivery {
        background: #f6d9d6;
    }

    .status.pending {
        background: #e7ded8;
    }

@media(max-width: 900px) {
    .admin-dashboard {
        grid-template-columns: 1fr;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .chart-bars {
        gap: 16px;
    }
}

.admin-outline-btn {
    border: 1px solid #314d2e;
    color: #314d2e;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 12px;
}

.admin-upgrade {
    position: absolute;
    bottom: 24px;
    left: 16px;
    right: 16px;
    background: #efe6e2;
    border: 1px solid #ddd0c8;
    border-radius: 12px;
    padding: 18px;
}

    .admin-upgrade span {
        font-size: 12px;
        color: #777;
    }

    .admin-upgrade p {
        margin: 10px 0 16px;
    }

    .admin-upgrade button {
        width: 100%;
        border: none;
        background: #314d2e;
        color: white;
        padding: 12px;
        border-radius: 999px;
    }

.admin-side {
    position: relative;
}

.admin-order-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 55px 64px;
    color: var(--green);
}

.admin-order-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

    .admin-order-head h1 {
        font-size: 36px;
        margin: 0 0 8px;
    }

    .admin-order-head p {
        color: var(--muted);
        margin: 0;
    }

.admin-order-actions {
    display: flex;
    gap: 14px;
}

.order-filter-bar {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr .55fr .55fr;
    gap: 14px;
    margin-bottom: 28px;
}

.btn-filter-pink {
    border: none;
    border-radius: 999px;
    background: #f3d5d2;
    color: #7b5d56;
    font-weight: 700;
}

.order-management-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 28px;
}

.order-table-card,
.order-detail-panel {
    background: white;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(93,109,83,.08);
    overflow: hidden;
}

.admin-order-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-order-table th {
        background: #f5ece7;
        color: #333;
        padding: 18px;
        text-align: left;
        font-size: 14px;
        letter-spacing: .5px;
    }

    .admin-order-table td {
        padding: 18px;
        border-bottom: 1px solid #eee;
        vertical-align: middle;
    }

.order-code {
    color: var(--green);
    font-weight: 700;
}

.customer-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-avatar {
    width: 32px;
    height: 32px;
    background: #f3d5d2;
    color: #7b5d56;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.customer-cell small {
    display: block;
    color: var(--muted);
}

.pay,
.status {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

    .pay.paid {
        background: #d8edcf;
        color: #314d2e;
    }

    .pay.unpaid {
        background: #f6d9d6;
        color: #7b5d56;
    }

    .status.delivery {
        background: #e7ded8;
        color: #314d2e;
    }

.order-total {
    font-weight: 800;
    color: var(--green);
}

.order-detail-panel {
    padding: 24px;
    height: fit-content;
}

.detail-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

    .detail-head h2 {
        margin: 0;
        font-size: 25px;
    }

.detail-section {
    border-top: 1px solid #eee;
    padding: 18px 0;
}

    .detail-section h4 {
        font-size: 13px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .detail-section p {
        margin: 4px 0;
        color: #444;
    }

.detail-price-row,
.detail-total {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
}

.detail-total {
    font-size: 20px;
    color: var(--green);
    margin-top: 20px;
}

.detail-btn {
    width: 100%;
    margin-top: 16px;
}

@media(max-width: 1000px) {
    .admin-order-page {
        padding: 35px 20px;
    }

    .admin-order-head,
    .order-management-layout {
        grid-template-columns: 1fr;
        display: grid;
    }

    .order-filter-bar {
        grid-template-columns: 1fr;
    }
}

.admin-dashboard {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    background: #fff8f5;
}

.admin-side {
    background: #f5ece7;
    border-right: 1px solid #ddd0c8;
    padding: 28px 18px;
}

    .admin-side h2 {
        color: #314d2e;
        margin-bottom: 34px;
        font-size: 26px;
    }

    .admin-side a {
        display: block;
        padding: 16px 18px;
        border-radius: 14px;
        margin-bottom: 12px;
        color: #314d2e;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
    }

        .admin-side a.active,
        .admin-side a:hover {
            background: #6e875f;
            color: white;
        }

.admin-content-area {
    padding: 36px;
}

.admin-product-page {
    padding: 10px;
    color: var(--green);
}

.admin-product-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

    .admin-product-head h1 {
        font-size: 34px;
        margin: 0 0 8px;
    }

    .admin-product-head p {
        color: var(--muted);
        margin: 0;
    }

.product-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.product-stat-card {
    background: white;
    border: 1px solid #eee2dc;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

    .product-stat-card > span {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: #d8edcf;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-stat-card p {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
        text-transform: uppercase;
    }

    .product-stat-card h2 {
        margin: 4px 0 0;
        color: var(--green);
    }

.product-filter-tabs {
    background: white;
    border: 1px solid #eee2dc;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .product-filter-tabs a {
        display: inline-block;
        padding: 10px 22px;
        border-radius: 999px;
        color: var(--green);
        font-weight: 600;
    }

        .product-filter-tabs a.active {
            background: var(--green2);
            color: white;
        }

    .product-filter-tabs select {
        border: 1px solid var(--border);
        background: var(--bg);
        border-radius: 999px;
        padding: 10px 18px;
    }

.admin-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(93,109,83,.08);
}

.admin-product-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-product-table th {
        background: #f5ece7;
        color: #444;
        padding: 18px;
        text-align: left;
        font-size: 14px;
    }

    .admin-product-table td {
        padding: 18px;
        border-bottom: 1px solid #eee;
    }

.admin-product-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .admin-product-info img {
        width: 48px;
        height: 48px;
        object-fit: cover;
        border-radius: 8px;
    }

    .admin-product-info strong {
        display: block;
        color: #1e1b18;
    }

    .admin-product-info small {
        color: var(--muted);
    }

.product-category {
    background: #f6d9d6;
    color: #7b5d56;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
}

.product-price {
    font-weight: 800;
    color: #1e1b18;
}

.stock-text {
    font-size: 12px;
    margin-bottom: 6px;
}

.stock-bar {
    width: 110px;
    height: 5px;
    background: #eadfd8;
    border-radius: 20px;
}

    .stock-bar span {
        display: block;
        height: 100%;
        background: var(--green2);
        border-radius: 20px;
    }

.product-status {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

    .product-status.active {
        background: #d8edcf;
        color: #314d2e;
    }

    .product-status.stop {
        background: #e7ded8;
        color: #6f5957;
    }

.icon-action {
    margin-right: 12px;
    color: var(--green);
}

.product-table-footer {
    display: flex;
    justify-content: space-between;
    padding: 18px;
    color: var(--muted);
    font-size: 13px;
}

    .product-table-footer button {
        border: 1px solid var(--border);
        background: white;
        padding: 8px 12px;
        border-radius: 6px;
    }

        .product-table-footer button.active {
            background: var(--green2);
            color: white;
        }

@media(max-width: 900px) {
    .product-stat-grid {
        grid-template-columns: 1fr;
    }

    .product-filter-tabs {
        display: block;
    }

    .admin-product-card {
        overflow-x: auto;
    }
}

.admin-customer-page {
    padding: 10px;
    color: var(--green);
}

.customer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

    .customer-head h1 {
        font-size: 34px;
        margin: 0;
    }

.customer-search {
    width: 330px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 14px 22px;
    background: transparent;
}

.customer-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.customer-stat-card {
    background: white;
    border-radius: 16px;
    padding: 34px;
    display: flex;
    align-items: center;
    gap: 26px;
    box-shadow: 0 15px 40px rgba(0,0,0,.04);
}

    .customer-stat-card span {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: #eef2ec;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .customer-stat-card p {
        margin: 0;
        color: var(--muted);
    }

    .customer-stat-card h2 {
        margin: 4px 0 0;
        font-size: 34px;
        color: #111;
    }

.customer-filter-box {
    background: #fbf3ef;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    display: grid;
    grid-template-columns: 180px 220px 1fr;
    gap: 18px;
    align-items: end;
    margin-bottom: 30px;
}

    .customer-filter-box label {
        font-size: 12px;
        color: var(--muted);
    }

    .customer-filter-box select {
        width: 100%;
        border: 1px solid var(--border);
        border-radius: 999px;
        padding: 13px 18px;
        background: white;
    }

.customer-filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.customer-table-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(93,109,83,.08);
}

.customer-table {
    width: 100%;
    border-collapse: collapse;
}

    .customer-table th {
        background: #f5ece7;
        padding: 20px;
        text-align: left;
        color: #333;
    }

    .customer-table td {
        padding: 22px 20px;
        border-bottom: 1px solid #eee;
    }

    .customer-table small {
        display: block;
        color: var(--muted);
        margin-top: 4px;
    }

.customer-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .customer-info img {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        object-fit: cover;
    }

.rank {
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

    .rank.diamond {
        background: #f6d9d6;
        color: #7b5d56;
    }

    .rank.gold {
        background: #e7ded8;
        color: #6f5957;
    }

    .rank.member {
        background: #eee7e3;
        color: #6f6a64;
    }

.customer-status {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

    .customer-status.active {
        background: #d8edcf;
        color: #314d2e;
    }

@media(max-width: 900px) {
    .customer-stat-grid,
    .customer-filter-box {
        grid-template-columns: 1fr;
    }

    .customer-head {
        display: block;
    }

    .customer-search {
        width: 100%;
        margin-top: 18px;
    }

    .customer-table-card {
        overflow-x: auto;
    }
}
.admin-customer-page {
    padding: 10px;
    color: var(--green);
}

.customer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

    .customer-head h1 {
        font-size: 38px;
        margin: 0 0 8px;
    }

    .customer-head p {
        color: var(--muted);
    }

.customer-search {
    width: 380px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 15px 24px;
    background: #fff8f5;
}

.customer-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 45px;
}

.customer-stat-card {
    background: white;
    border-radius: 24px;
    padding: 34px;
    display: flex;
    align-items: center;
    gap: 26px;
    box-shadow: 0 18px 45px rgba(93,109,83,.08);
}

    .customer-stat-card.vip {
        border: 2px solid var(--green);
    }

    .customer-stat-card span {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        background: #eef4ea;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
    }

    .customer-stat-card p {
        color: var(--muted);
        margin: 0;
    }

    .customer-stat-card h2 {
        margin: 6px 0 0;
        font-size: 46px;
        font-weight: 400;
    }

.customer-filter-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px 22px 0 0;
    padding: 24px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

    .customer-filter-box input {
        width: 320px;
    }

    .customer-filter-box select {
        border: 1px solid var(--border);
        background: #fff8f5;
        border-radius: 999px;
        padding: 14px 20px;
    }

.customer-table-card {
    background: white;
    border-radius: 0 0 22px 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(93,109,83,.08);
}

.customer-table {
    width: 100%;
    border-collapse: collapse;
}

    .customer-table th {
        background: #f5ece7;
        padding: 20px;
        text-align: left;
        font-size: 13px;
        letter-spacing: 1px;
        color: #333;
    }

    .customer-table td {
        padding: 24px 20px;
        border-bottom: 1px solid #eee;
    }

.customer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .customer-info img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
    }

.customer-table small {
    display: block;
    color: var(--muted);
    margin-top: 5px;
}

.rank {
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

    .rank.diamond {
        background: #f6d9d6;
        color: #7b5d56;
    }

    .rank.gold {
        background: #ffe6a6;
        color: #7a5b00;
    }

    .rank.member {
        background: #e7ded8;
        color: #6f5957;
    }

.customer-money {
    font-weight: 800;
    color: var(--green);
    font-size: 18px;
}

.customer-status {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

    .customer-status.active {
        background: #d8edcf;
        color: #314d2e;
    }

@media(max-width: 900px) {
    .customer-head,
    .customer-filter-box {
        display: block;
    }

    .customer-search {
        width: 100%;
        margin-top: 16px;
    }

    .customer-stat-grid {
        grid-template-columns: 1fr;
    }

    .customer-table-card {
        overflow-x: auto;
    }
}
.admin-create-product {
    color: var(--green);
}

.create-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

    .create-head h1 {
        font-size: 42px;
        font-weight: 400;
        margin: 0;
    }

    .create-head p {
        color: var(--muted);
        margin-top: 8px;
    }

    .create-head > div:last-child {
        display: flex;
        gap: 14px;
    }

.create-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
}

.create-card {
    background: white;
    border: 1px solid #eee2dc;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(93,109,83,.05);
}

    .create-card h2 {
        margin: 0 0 24px;
        font-size: 26px;
        font-weight: 500;
        color: #1e1b18;
    }

    .create-card label span {
        color: #c21b1b;
    }

.create-textarea {
    min-height: 170px;
    border-radius: 14px !important;
    resize: vertical;
}

.upload-box {
    border: 2px dashed #c9cfc2;
    border-radius: 16px;
    text-align: center;
    padding: 42px;
}

.upload-icon {
    width: 70px;
    height: 70px;
    background: #d8edcf;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

.upload-box p {
    color: var(--muted);
    margin-bottom: 24px;
}

.variant-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .variant-box strong {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .variant-box span:not(.dot) {
        display: inline-block;
        background: #d8edcf;
        padding: 6px 14px;
        border-radius: 999px;
        margin-right: 8px;
    }

.dot {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid var(--border);
}

    .dot.pink {
        background: #f6d9d6;
    }

    .dot.green {
        background: #d8edcf;
    }

.variant-box button {
    border: none;
    background: transparent;
    color: #c21b1b;
    font-size: 18px;
}

.switch-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .switch-row input {
        width: 42px;
        height: 22px;
        accent-color: var(--green);
    }

.note-box {
    margin-top: 18px;
    background: #eef4ea;
    padding: 18px;
    border-radius: 12px;
    color: var(--green);
    line-height: 1.6;
}

.tag-list {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

    .tag-list span {
        background: #f6d9d6;
        color: #7b5d56;
        padding: 7px 14px;
        border-radius: 999px;
    }

.tag-btn {
    padding: 9px 16px;
}

@media(max-width: 1000px) {
    .create-grid {
        grid-template-columns: 1fr;
    }

    .create-head {
        display: block;
    }

        .create-head > div:last-child {
            margin-top: 18px;
        }
}
.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0 20px;
}

    .shop-pagination a {
        width: 34px;
        height: 34px;
        border: 1px solid var(--border);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--green);
        text-decoration: none;
        background: white;
    }

        .shop-pagination a.active {
            background: var(--green);
            color: white;
        }
.login-modern {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff8f5;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.login-left {
    position: relative;
    overflow: hidden;
}

    .login-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.login-brand {
    position: absolute;
    left: 70px;
    bottom: 70px;
    color: white;
}

    .login-brand h1 {
        font-size: 58px;
        font-weight: 300;
        margin: 0 0 12px;
    }

    .login-brand p {
        font-size: 22px;
    }

.login-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.login-box {
    width: 100%;
    max-width: 520px;
}

    .login-box h1 {
        color: #314d2e;
        font-size: 42px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .login-box > p {
        color: #6f6a64;
        font-size: 17px;
        margin-bottom: 38px;
    }

    .login-box label {
        display: block;
        margin: 18px 0 8px;
        color: #333;
        font-weight: 600;
    }

.login-input {
    height: 62px;
    border: 1px solid #d8cec7;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    background: transparent;
}

    .login-input input {
        border: none;
        outline: none;
        background: transparent;
        width: 100%;
        font-size: 17px;
    }

.forgot-link {
    display: block;
    text-align: right;
    margin: 18px 0 35px;
    color: #314d2e;
    text-decoration: none;
    font-weight: 700;
}

.login-btn {
    width: 100%;
    border: none;
    background: #314d2e;
    color: white;
    padding: 18px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(49,77,46,.25);
}

.login-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    margin: 36px 0 28px;
    color: #888;
}

    .login-divider span {
        height: 1px;
        background: #ddd0c8;
    }

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

    .social-login button {
        padding: 16px;
        border-radius: 999px;
        border: 1px solid #d8cec7;
        background: transparent;
        font-weight: 700;
        font-size: 16px;
    }

.register-line {
    text-align: center;
    margin-top: 36px;
    color: #6f6a64;
}

    .register-line a {
        color: #314d2e;
        font-weight: 800;
        text-decoration: none;
    }

.login-alert {
    background: #ffdad6;
    color: #93000a;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 700;
}

.login-leaf {
    text-align: center;
    color: #cfc7c1;
    font-size: 42px;
    margin-top: 70px;
}

@media(max-width: 900px) {
    .login-modern {
        grid-template-columns: 1fr;
    }

    .login-left {
        display: none;
    }
}
.login-modern {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff8f5;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.login-left {
    position: relative;
    overflow: hidden;
}

    .login-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.login-brand {
    position: absolute;
    left: 70px;
    bottom: 70px;
    color: white;
}

    .login-brand h1 {
        font-size: 58px;
        font-weight: 300;
        margin: 0 0 12px;
    }

    .login-brand p {
        font-size: 22px;
    }

.login-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.login-box {
    width: 100%;
    max-width: 520px;
}

    .login-box h1 {
        color: #314d2e;
        font-size: 42px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .login-box > p {
        color: #6f6a64;
        font-size: 17px;
        margin-bottom: 38px;
    }

    .login-box label {
        display: block;
        margin: 18px 0 8px;
        color: #333;
        font-weight: 600;
    }

.login-input {
    height: 62px;
    border: 1px solid #d8cec7;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    background: transparent;
}

    .login-input input {
        border: none;
        outline: none;
        background: transparent;
        width: 100%;
        font-size: 17px;
    }

.forgot-link {
    display: block;
    text-align: right;
    margin: 18px 0 35px;
    color: #314d2e;
    text-decoration: none;
    font-weight: 700;
}

.login-btn {
    width: 100%;
    border: none;
    background: #314d2e;
    color: white;
    padding: 18px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(49,77,46,.25);
}

.login-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    margin: 36px 0 28px;
    color: #888;
}

    .login-divider span {
        height: 1px;
        background: #ddd0c8;
    }

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

    .social-login button {
        padding: 16px;
        border-radius: 999px;
        border: 1px solid #d8cec7;
        background: transparent;
        font-weight: 700;
        font-size: 16px;
    }

.register-line {
    text-align: center;
    margin-top: 36px;
    color: #6f6a64;
}

    .register-line a {
        color: #314d2e;
        font-weight: 800;
        text-decoration: none;
    }

.login-alert {
    background: #ffdad6;
    color: #93000a;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 700;
}

.login-leaf {
    text-align: center;
    color: #cfc7c1;
    font-size: 42px;
    margin-top: 70px;
}

@media(max-width: 900px) {
    .login-modern {
        grid-template-columns: 1fr;
    }

    .login-left {
        display: none;
    }
}
.forgot-page {
    min-height: 100vh;
    background: #fff8f5;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    flex-direction: column;
}

.forgot-header {
    padding: 30px 70px;
    display: flex;
    justify-content: space-between;
}

.forgot-logo {
    color: #314d2e;
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
}

.forgot-back {
    color: #333;
    text-decoration: none;
    font-weight: 700;
}

.forgot-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.forgot-card {
    width: 480px;
    background: white;
    padding: 48px;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.forgot-icon {
    width: 70px;
    height: 70px;
    background: #d8edcf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-card h1 {
    color: #314d2e;
    font-size: 36px;
    margin-bottom: 12px;
}

.forgot-card p {
    color: #555;
    line-height: 1.6;
}

.forgot-card label {
    display: block;
    margin-top: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.forgot-card hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 34px 0;
}

.help-line {
    text-align: center;
}

    .help-line a {
        color: #314d2e;
        font-weight: 800;
        text-decoration: none;
    }

.forgot-note {
    width: 480px;
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    color: #aaa;
}

.forgot-footer {
    border-top: 1px solid #ddd0c8;
    padding: 30px 70px;
    display: flex;
    justify-content: space-between;
}

    .forgot-footer a {
        color: #333;
        margin-left: 30px;
        text-decoration: none;
    }
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50px;
    background: #d62828;
    color: white;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.order-row-click {
    cursor: pointer;
}

    .order-row-click:hover {
        background: #fff4ef;
    }
.order-row-click {
    cursor: pointer;
}

    .order-row-click:hover {
        background: #f8f3ee;
    }

.shop-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 45px 24px 80px;
    font-family: Arial, sans-serif;
    color: #111;
}

.breadcrumb {
    font-size: 11px;
    color: #777;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.shop-heading {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
}

.shop-desc {
    max-width: 560px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 55px;
}

.shop-main {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
}

.shop-sidebar h3 {
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ddd;
}

.shop-sidebar label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 13px;
}

.shop-sidebar input {
    margin-right: 8px;
}

.shop-sidebar h3:not(:first-child) {
    margin-top: 34px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #555;
    margin-bottom: 34px;
}

    .shop-toolbar select {
        border: none;
        background: transparent;
        padding: 8px;
        font-size: 12px;
    }

.product-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px 28px;
}

.product-clean-card {
    transition: 0.25s;
}

    .product-clean-card:hover {
        transform: translateY(-4px);
    }

.product-img-box {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    background: #f3f3f3;
    overflow: hidden;
    margin-bottom: 18px;
}

    .product-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.product-clean-card h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0 0 6px;
}

.product-clean-card .brand {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #777;
    margin: 0 0 8px;
}

.product-clean-card .price {
    font-size: 14px;
    color: #111;
    margin: 0;
}

.pagination-clean {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 70px;
}

    .pagination-clean a {
        width: 38px;
        height: 38px;
        border: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #111;
        text-decoration: none;
        font-size: 13px;
    }

        .pagination-clean a.active {
            background: #000;
            color: #fff;
            border-color: #000;
        }

@media (max-width: 900px) {
    .shop-main {
        grid-template-columns: 1fr;
    }

    .product-grid-clean {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid-clean {
        grid-template-columns: 1fr;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .shop-heading {
        font-size: 32px;
    }
}
.detail-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 55px 24px 90px;
    color: #111;
}

.detail-breadcrumb {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 45px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 65px;
}

.main-product-img {
    width: 100%;
    height: 590px;
    background: #f2f2f2;
    overflow: hidden;
}

    .main-product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.thumb-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 22px;
}

    .thumb-list img {
        height: 130px;
        width: 100%;
        object-fit: cover;
        background: #f3f3f3;
    }

.detail-badge {
    display: inline-block;
    background: #f4e7d5;
    padding: 7px 14px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.detail-right h1 {
    font-size: 48px;
    line-height: 1;
    margin: 0 0 22px;
    font-weight: 600;
}

.detail-price {
    font-size: 15px;
    margin-bottom: 32px;
}

.detail-desc {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    max-width: 430px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.detail-icons {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: #555;
    margin: 20px 0 30px;
}

.volume-box p {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.volume-box button {
    width: 82px;
    height: 48px;
    background: white;
    border: 1px solid #bbb;
    margin-right: 12px;
}

.btn-buy,
.btn-add-cart {
    display: block;
    width: 100%;
    max-width: 430px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    text-decoration: none;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 600;
}

.btn-buy {
    background: #000;
    color: #fff;
}

.btn-add-cart {
    background: #fff;
    color: #000;
    border: 1px solid #111;
}

.detail-policy {
    margin-top: 55px;
}

    .detail-policy div {
        margin-bottom: 22px;
    }

    .detail-policy b {
        font-size: 14px;
    }

    .detail-policy p {
        margin: 6px 0 0;
        color: #666;
        font-size: 13px;
    }

.product-tabs {
    display: flex;
    gap: 70px;
    border-bottom: 1px solid #ddd;
    margin-top: 90px;
}

    .product-tabs a {
        padding-bottom: 22px;
        font-size: 13px;
        letter-spacing: 2px;
        color: #555;
        text-decoration: none;
    }

        .product-tabs a.active {
            color: #000;
            border-bottom: 2px solid #000;
        }

.ingredient-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    margin-top: 45px;
}

    .ingredient-section h3 {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .ingredient-section p {
        color: #555;
        line-height: 1.8;
    }

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

    .ingredient-grid div {
        background: #f7f7f7;
        padding: 28px;
    }

.related-title {
    font-size: 42px;
    margin: 100px 0 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.related-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    background: #f4f4f4;
}

.related-card h3 {
    font-size: 15px;
    margin: 16px 0 6px;
}

.related-card p {
    font-size: 13px;
    color: #555;
}

@media (max-width: 900px) {
    .product-detail-layout,
    .ingredient-section {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-right h1 {
        font-size: 36px;
    }
}
body {
    margin: 0;
    background: #f7f7f7;
    font-family: Arial, sans-serif;
    color: #111;
}

.admin-page {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: #fff;
    border-right: 1px solid #ddd;
    padding: 30px 18px;
    position: fixed;
    height: 100vh;
}

    .sidebar h1 {
        margin: 0;
        font-size: 30px;
    }

    .sidebar p {
        letter-spacing: 3px;
        font-size: 13px;
        margin-bottom: 50px;
    }

    .sidebar a {
        display: block;
        padding: 16px 20px;
        margin-bottom: 12px;
        text-decoration: none;
        color: #222;
        font-weight: 600;
        border-radius: 5px;
    }

        .sidebar a.active {
            background: #ffe2b3;
            color: #6b4b22;
        }

.admin-user {
    position: absolute;
    bottom: 35px;
    left: 18px;
    right: 18px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

    .admin-user span {
        display: block;
        color: #777;
        font-size: 13px;
    }

.content {
    margin-left: 296px;
    flex: 1;
}

.topbar {
    height: 70px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 70px;
}

    .topbar input {
        width: 420px;
        padding: 15px 22px;
        border: none;
        background: #f1f1f1;
        border-radius: 14px;
        font-size: 15px;
    }

.order-header {
    padding: 70px 70px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .order-header p {
        letter-spacing: 3px;
        font-size: 13px;
        font-weight: bold;
    }

    .order-header h1 {
        font-size: 52px;
        margin: 20px 0 0;
    }

.order-actions {
    display: flex;
    gap: 14px;
}

.btn-outline,
.btn-black {
    padding: 18px 28px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-outline {
    border: 1px solid #111;
    color: #111;
    background: #fff;
}

.btn-black {
    background: #000;
    color: #fff;
}

.tabs {
    margin: 0 70px 25px;
    border-bottom: 1px solid #ccc;
}

    .tabs a {
        display: inline-block;
        padding: 18px 28px 18px 0;
        margin-right: 28px;
        text-decoration: none;
        color: #222;
        font-weight: bold;
        letter-spacing: 2px;
    }

        .tabs a.active {
            border-bottom: 3px solid #000;
        }

.filters {
    margin: 0 70px 35px;
    display: flex;
    gap: 18px;
    align-items: center;
}

    .filters input,
    .filters select {
        width: 230px;
        padding: 15px;
        border: 1px solid #bbb;
        background: #fff;
    }

    .filters a {
        color: #222;
        text-decoration: none;
        font-weight: bold;
        letter-spacing: 2px;
    }

.order-table {
    width: calc(100% - 140px);
    margin: 0 70px;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #ccc;
}

    .order-table th {
        text-align: left;
        padding: 22px 28px;
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        background: #f5f5f5;
    }

    .order-table td {
        padding: 28px;
        border-top: 1px solid #ddd;
        font-size: 16px;
    }

    .order-table small {
        color: #777;
    }

.status {
    display: inline-block;
    padding: 8px 14px;
    background: #ffe0b6;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}
.db-header {
    height: 90px;
    background: #f8f8f8;
    border-bottom: 1px solid #ececec;
}

.db-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.db-menu {
    display: flex;
    align-items: center;
    gap: 45px;
    margin-left: 70px;
}

    .db-menu a {
        text-decoration: none;
        color: #222;
        font-size: 18px;
    }

        .db-menu a:hover {
            font-weight: 700;
        }

.header-search {
    margin-left: auto;
    width: 340px;
    height: 48px;
    background: #f1f3f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

    .header-search input {
        flex: 1;
        border: none;
        background: transparent;
        outline: none;
    }

    .header-search button {
        border: none;
        background: transparent;
        cursor: pointer;
    }

.header-icons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: 30px;
}

.cart-icon,
.user-profile-link {
    text-decoration: none;
    color: #111;
}

.db-icon {
    font-size: 30px !important;
}
/* FIX HEADER: chữ menu và tên user nằm 1 hàng */
.db-header { height: 82px !important; }
.db-container.db-nav { max-width: 1280px; padding: 0 34px; gap: 24px; }
.header-logo { height: 70px !important; max-width: 110px; }
.db-menu { gap: 32px !important; margin-left: 32px !important; flex-shrink: 0; white-space: nowrap; }
.db-menu a, .nav-link { white-space: nowrap; line-height: 1 !important; font-size: 16px !important; display: inline-flex; align-items: center; }
.header-search { width: 330px !important; flex: 0 0 330px; margin-left: auto !important; }
.header-icons { gap: 18px !important; margin-left: 18px !important; flex-shrink: 0; }
.header-user, .header-user-info { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.header-user-info span { display: inline-block; max-width: 115px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.logout-form { margin: 0; display: inline-flex; }
.logout-icon { border: 0; background: transparent; cursor: pointer; padding: 4px; }
@media(max-width: 1100px){
  .db-container.db-nav{padding:0 18px; gap:14px;}
  .db-menu{gap:18px!important; margin-left:14px!important;}
  .header-search{width:250px!important; flex-basis:250px;}
}

/* AJAX loading + toast */
.ajax-topbar{position:fixed;left:0;top:0;height:3px;width:100%;z-index:99999;overflow:hidden;background:rgba(0,0,0,.06)}
.ajax-topbar:before{content:"";display:block;height:100%;width:35%;background:#111;animation:ajaxSlide .85s infinite ease-in-out}
@keyframes ajaxSlide{0%{transform:translateX(-120%)}100%{transform:translateX(310%)}}
body.ajax-loading{cursor:progress}
#ajax-page{transition:opacity .15s ease}
body.ajax-loading #ajax-page{opacity:.62;pointer-events:none}
.ajax-toast-wrap{position:fixed;right:22px;bottom:22px;z-index:100000;display:flex;flex-direction:column;gap:10px}
.ajax-toast{min-width:230px;max-width:360px;padding:13px 16px;border-radius:14px;background:#111;color:#fff;font-weight:700;box-shadow:0 12px 30px rgba(0,0,0,.18);opacity:0;transform:translateY(12px);transition:.25s ease;font-family:'Plus Jakarta Sans',Arial,sans-serif}
.ajax-toast.show{opacity:1;transform:translateY(0)}
.ajax-toast.error{background:#b42318}.ajax-toast.success{background:#111}
