:root {
    --brand-500: #22c55e;
    --brand-600: #198754;
    --brand-700: #157347;
    --brand-800: #166534;
    --bg: #f6faf7;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --text: #0f172a;
    --muted: #64748b;
    --border: rgba(15, 23, 42, 0.10);
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-sm: 0 6px 20px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.12);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-pill: 999px;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: "Be Vietnam Pro", "Inter", Arial, sans-serif;
    background: radial-gradient(1200px 420px at 20% 0%, rgba(25, 135, 84, 0.10), transparent 55%), radial-gradient(900px 360px at 90% 20%, rgba(34, 197, 94, 0.10), transparent 55%), var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    body.app-shell {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

main.app-main {
    flex: 1 0 auto;
}

main.app-main-home {
    padding: 0;
}

/* ===== GLOBAL BASE ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    overflow: visible;
}

.breadcrumb {
    --bs-breadcrumb-divider-color: rgba(100, 116, 139, 0.7);
}

    .breadcrumb .breadcrumb-item a {
        text-decoration: none;
    }

        .breadcrumb .breadcrumb-item a:hover {
            text-decoration: underline;
        }

a {
    color: var(--brand-700);
}

    a:hover {
        color: var(--brand-800);
    }

.page-title {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.text-muted {
    color: var(--muted) !important;
}

.navbar-brand {
    letter-spacing: 0.03em;
}

.alert {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: var(--shadow-xs);
}

.card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    background: var(--surface);
}

.card-hover {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .card-hover:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

.table thead th {
    font-weight: 700;
    color: rgba(15, 23, 42, 0.78);
}

.badge {
    border-radius: var(--radius-pill);
    font-weight: 650;
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, border-color 0.12s ease;
}

    .btn:active {
        transform: translateY(1px);
    }

.btn-success {
    background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
    border: none;
    box-shadow: 0 8px 18px rgba(25, 135, 84, 0.22);
}

    .btn-success:hover {
        background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
        box-shadow: 0 10px 22px rgba(21, 115, 71, 0.26);
    }

.btn-outline-success {
    border-color: rgba(25, 135, 84, 0.35);
    color: var(--brand-700);
}

    .btn-outline-success:hover {
        background: rgba(25, 135, 84, 0.08);
        border-color: rgba(25, 135, 84, 0.55);
        color: var(--brand-800);
    }

/* ===== FORM ===== */
.form-control,
.form-select,
.input-group-text {
    border-radius: var(--radius-md);
    border-color: rgba(15, 23, 42, 0.16);
}

    .form-control:focus,
    .form-select:focus {
        border-color: rgba(25, 135, 84, 0.7);
        box-shadow: 0 0 0 0.22rem rgba(25, 135, 84, 0.14);
    }

.profile-validation-message {
    display: block;
    min-height: 1.25rem;
    margin-top: 0.35rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

/* ===== PAGINATION ===== */
.pagination .page-link {
    border-radius: 12px;
    border-color: rgba(15, 23, 42, 0.12);
    color: var(--text);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(25, 135, 84, 0.18);
}

.pagination .page-item.disabled .page-link {
    color: rgba(100, 116, 139, 0.7);
}

/* ===== TOAST / MODAL POPUP ===== */
.toast-container {
    z-index: 1080 !important;
}

.toast {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

    .toast .toast-body {
        font-weight: 500;
        line-height: 1.45;
    }

#appToast {
    min-width: 320px;
    max-width: 420px;
}

.modal-content {
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
}

.modal-header {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.modal-footer {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.modal-title {
    font-weight: 700;
    color: var(--text);
}

#confirmModalBody {
    color: rgba(15, 23, 42, 0.86);
    line-height: 1.6;
}

.modal-backdrop.show {
    opacity: 0.35;
}

/* ===== TOPBAR ===== */
.topbar {
    background: linear-gradient(90deg, #163d24, var(--brand-700));
    color: #f9fafb;
    font-size: 0.9rem;
    overflow: hidden;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-announcement {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.topbar-announcement-track {
    display: flex;
    width: max-content;
    animation: topbarAnnouncementScroll 28s linear infinite;
    will-change: transform;
}

.topbar-announcement:hover .topbar-announcement-track {
    animation-play-state: paused;
}

.topbar-announcement-track span {
    flex: 0 0 auto;
    padding-right: 64px;
    color: #ffffff;
    font-weight: 750;
    letter-spacing: 0;
}

@keyframes topbarAnnouncementScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.topbar-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.topbar-sep {
    opacity: 0.5;
}

.topbar-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.topbar-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
    overflow: visible;
}

.main-header .container {
    overflow: visible;
}

.main-header-inner {
    overflow: visible;
}

.main-header {
    position: relative;
    z-index: 2;
}

.main-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: nowrap;
    padding: 14px 0;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 240px;
    flex: 0 0 auto;
}

.brand-logo {
    box-sizing: border-box;
    width: auto;
    max-width: 154px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(25, 135, 84, 0.14);
    padding: 3px;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--brand-800);
    letter-spacing: 0.02em;
}

.brand-subtitle {
    font-size: 0.92rem;
    color: var(--muted);
}

.header-search {
    flex: 1 1 420px;
    max-width: 620px;
    margin-left: 20px;
    margin-right: 0;
}

.header-search .input-group {
    box-shadow: 0 10px 24px rgba(22, 61, 36, 0.08);
    border-radius: var(--radius-pill);
}

.search-input {
    min-height: 46px;
    border-radius: var(--radius-pill) 0 0 var(--radius-pill) !important;
    border: 1px solid rgba(15, 23, 42, 0.14);
    padding-left: 18px;
}

    .search-input:focus {
        box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.15);
        border-color: #198754;
    }

.search-btn {
    min-height: 46px;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0 !important;
    padding: 0 22px;
    font-weight: 750;
}

.header-track-link {
    padding-left: 13px;
    padding-right: 14px;
}

.header-cart {
    overflow: visible;
}

.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    border: 2px solid #fff;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-left: auto;
    white-space: nowrap;
    flex: 0 0 auto;
    position: relative;
    z-index: 1050;
}

.header-action-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 750;
    transition: 0.2s ease;
}

    .header-action-link:hover {
        color: #198754;
    }

.header-register-btn {
    text-decoration: none;
    background: var(--brand-600);
    color: #fff;
    padding: 9px 16px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    transition: 0.2s ease;
}

    .header-register-btn:hover {
        background: #157347;
        color: #fff;
    }

.header-user {
    color: rgba(15, 23, 42, 0.78);
    font-size: 0.95rem;
    margin-bottom: 0;
    white-space: nowrap;
}

/* Header action icons (hotline, cart, account) */
.header-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(22, 61, 36, 0.10);
    background: #ffffff;
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
}

    .header-action-icon:hover {
        background: rgba(25, 135, 84, 0.1);
        color: var(--brand-700);
    }

    .header-action-icon i {
        font-size: 1.25rem;
    }

.header-action-text {
    margin-left: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.header-account-dropdown {
    position: static;
}

.header-account-dropdown .dropdown-menu {
    position: absolute;
    z-index: 1060;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 8px;
    min-width: 220px;
}

.header-account-menu .dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 500;
}

    .header-account-menu .dropdown-item:hover {
        background: rgba(25, 135, 84, 0.08);
        color: var(--brand-700);
    }

.header-account-menu .dropdown-header {
    padding: 8px 14px;
    font-size: 0.9rem;
}

/* ===== NAV ===== */
.main-nav {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, var(--brand-600), var(--brand-700));
    box-shadow: 0 3px 10px rgba(21, 115, 71, 0.18);
}

.nav-menu-custom .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    padding: 0.9rem 1rem !important;
    transition: 0.2s ease;
}

    .nav-menu-custom .nav-link:hover,
    .nav-menu-custom .nav-link:focus {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 8px;
    }

    .nav-menu-custom .nav-link.active {
        background: rgba(255, 255, 255, 0.18);
        border-radius: 10px;
    }

/* Product dropdown menu */
.product-dropdown-menu {
    min-width: 260px;
    padding: 8px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.product-dropdown-menu .dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 500;
}

    .product-dropdown-menu .dropdown-item:hover {
        background: rgba(25, 135, 84, 0.08);
        color: var(--brand-700);
    }

/* ===== PRODUCT CARDS ===== */
.product-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.product-card .card-title {
    font-weight: 750;
    letter-spacing: -0.01em;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== AUTH ===== */
.auth-shell {
    padding: 34px 0 44px;
}

.auth-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: var(--shadow-md);
}

.auth-aside {
    background: radial-gradient(900px 360px at 20% 0%, rgba(34, 197, 94, 0.22), transparent 60%), linear-gradient(135deg, rgba(25, 135, 84, 0.14), rgba(15, 23, 42, 0.06)), var(--surface);
}

.auth-brand-logo {
    box-sizing: border-box;
    width: auto;
    max-width: 132px;
    height: auto;
    max-height: 42px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 3px;
    box-shadow: 0 5px 14px rgba(25, 135, 84, 0.14);
}

/* ===== CART ===== */
.table-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: var(--surface);
    box-shadow: var(--shadow-xs);
}

.summary-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

/* ===== CAROUSEL ===== */
#homeCarousel {
    position: relative;
    width: 100%;
}

    #homeCarousel .carousel-inner {
        width: 100%;
        border-radius: 0.75rem;
        overflow: hidden;
        padding: 0;
    }

    #homeCarousel .carousel-item {
        height: 320px;
    }

.carousel-bg {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

    .carousel-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.18);
    }

.carousel-bg-1 {
    background-image: url('/images/ba-roi-heo-tra-xanh.jpg');
}

.carousel-bg-2 {
    background-image: url('/images/bot-tra-xanh.jpg');
}

.carousel-bg-3 {
    background-image: url('/images/la-tra-xanh.jpg');
}

#homeCarousel .carousel-bg .p-4 {
    position: relative;
    z-index: 5;
    max-width: 48%;
    margin-left: 24px;
}

#homeCarousel .carousel-control-prev,
#homeCarousel .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 20;
}

#homeCarousel .carousel-control-prev {
    left: 12px;
}

#homeCarousel .carousel-control-next {
    right: 12px;
}

#homeCarousel .carousel-control-prev-icon,
#homeCarousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 16px;
    background-size: 60% 60%;
}

#homeCarousel .carousel-indicators {
    z-index: 25;
}

    #homeCarousel .carousel-indicators button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

/* ===== HOME LANDING: HERO ===== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 244, 0.9) 50%, rgba(220, 252, 231, 0.6) 100%);
    padding: 48px 0 64px;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(25, 135, 84, 0.12);
    color: var(--brand-700);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-font-display {
    font-family: "Be Vietnam Pro", "Inter", Arial, sans-serif;
}

.hero-title-accent {
    color: var(--brand-700);
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(15, 23, 42, 0.8);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-hero-primary {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
    border: none;
    color: #fff;
    box-shadow: 0 10px 24px rgba(25, 135, 84, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .btn-hero-primary:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(25, 135, 84, 0.35);
        background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
    }

.btn-hero-outline {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 2px solid var(--brand-600);
    color: var(--brand-700);
    background: transparent;
    transition: background 0.2s, color 0.2s;
}

    .btn-hero-outline:hover {
        background: rgba(25, 135, 84, 0.1);
        color: var(--brand-800);
        border-color: var(--brand-700);
    }

.hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    position: relative;
    width: 100%;
    max-width: 580px;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(25, 135, 84, 0.15);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(240, 253, 244, 0.8));
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(220, 252, 231, 0.6));
    color: var(--brand-700);
}

    .hero-image-fallback i {
        font-size: 4rem;
        margin-bottom: 12px;
        opacity: 0.6;
    }

    .hero-image-fallback span {
        font-weight: 600;
        font-size: 1rem;
    }

.hero-shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg), transparent);
}

/* ===== HOME LANDING: QUY TRÌNH SẢN XUẤT ===== */
.process-section {
    padding: 64px 0 48px;
    background: var(--surface);
}

.process-header {
    margin-bottom: 48px;
}

.process-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(25, 135, 84, 0.1);
    color: var(--brand-700);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.process-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.process-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.process-step-card {
    position: relative;
    padding: 28px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

    .process-step-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: rgba(25, 135, 84, 0.2);
    }

.process-step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(25, 135, 84, 0.12);
    line-height: 1;
}

.process-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(25, 135, 84, 0.1);
    color: var(--brand-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.process-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.process-step-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.process-cta .btn {
    font-weight: 700;
}

/* ===== HOME LANDING: CTA TOOL & COMMUNITY ===== */
.cta-section {
    padding: 48px 0 64px;
    background: var(--bg);
}

.cta-section .row {
    align-items: stretch;
}

.cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .cta-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.cta-tool {
    background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
    color: #fff;
    border: none;
}

.cta-community {
    background: linear-gradient(135deg, #166534, #15803d);
    color: #fff;
    border: none;
}

.cta-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.cta-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-card-desc {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.cta-card-actions {
    margin-top: auto;
}

.cta-card .btn-light,
.cta-card .btn-outline-light {
    font-weight: 600;
}

.cta-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: #fff;
}

/* ===== FOOTER ===== */
.site-footer {
    margin-top: 0;
    background: linear-gradient(180deg, #0f172a, #111827);
    color: #e5e7eb;
}

.footer-top {
    padding: 44px 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-logo {
    box-sizing: border-box;
    width: auto;
    max-width: 150px;
    height: auto;
    max-height: 56px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 4px;
    flex-shrink: 0;
    display: block;
}

.footer-brand-title {
    color: #ffffff;
    font-weight: 700;
}

.footer-brand-desc {
    color: #cbd5e1;
    line-height: 1.7;
}

.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        transition: 0.2s ease;
    }

        .footer-links a:hover {
            color: #86efac;
            padding-left: 2px;
        }

.footer-contact p {
    color: #cbd5e1;
    line-height: 1.65;
}

.footer-bottom {
    padding: 16px 0 22px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: #9ca3af;
    font-size: 0.92rem;
}

.footer-bottom-note {
    text-align: right;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .main-header-inner {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .brand-wrap {
        min-width: auto;
    }

    .header-search {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .header-actions {
        margin-left: auto;
        flex-wrap: wrap;
        gap: 8px;
    }

    .header-action-icon {
        min-width: 40px;
        height: 40px;
        padding-left: 9px;
        padding-right: 9px;
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 6px 0;
    }

    .topbar {
        font-size: 0.82rem;
    }

    .topbar-announcement {
        mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    }

    .topbar-announcement-track {
        animation-duration: 24s;
    }

    .topbar-announcement-track span {
        padding-right: 44px;
    }

    .brand-logo {
        max-width: 126px;
        max-height: 42px;
        padding: 2px;
    }

    .brand-title {
        font-size: 1.35rem;
    }

    .brand-subtitle {
        font-size: 0.85rem;
    }

    .main-header-inner {
        gap: 12px;
    }

    .header-actions {
        flex-wrap: nowrap;
    }

    .header-action-icon {
        min-width: 38px;
        height: 38px;
    }

    .cart-count-badge {
        top: -5px;
        right: -5px;
        min-width: 18px;
        height: 18px;
        font-size: 0.68rem;
    }

    .auth-brand-logo {
        max-width: 118px;
        max-height: 38px;
    }

    #homeCarousel .carousel-item,
    .carousel-bg {
        height: 260px;
    }

    #homeCarousel .carousel-bg .p-4 {
        max-width: 72%;
        margin-left: 12px;
        padding: 1rem !important;
    }

    .hero-section {
        padding: 32px 0 48px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrap {
        margin-top: 32px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-section {
        padding: 48px 0 36px;
    }

    .process-header {
        margin-bottom: 36px;
    }

    #homeCarousel .carousel-control-prev,
    #homeCarousel .carousel-control-next {
        width: 42px;
        height: 42px;
    }

    .footer-brand-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-note {
        text-align: left;
    }

    #appToast {
        min-width: unset;
        width: calc(100vw - 24px);
        max-width: 100%;
    }
}

/* ===== COMMUNITY DETAIL ===== */
.community-detail-page {
    padding-bottom: 24px;
}

.community-sidebar-card,
.community-article-card,
.community-comment-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}

.community-sidebar-card {
    padding: 20px;
}

.community-sidebar-title,
.community-comment-title {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--text);
    position: relative;
}

    .community-sidebar-title::after,
    .community-comment-title::after {
        content: "";
        display: block;
        width: 48px;
        height: 2px;
        background: var(--brand-600);
        margin-top: 10px;
        border-radius: 999px;
    }

.community-mini-post {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

    .community-mini-post:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.community-mini-post-thumb {
    width: 82px;
    min-width: 82px;
    height: 62px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface-2);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

    .community-mini-post-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.community-mini-post-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--brand-600);
    font-size: 1.25rem;
    background: rgba(25, 135, 84, 0.06);
}

.community-mini-post-name {
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 4px;
}

.community-mini-post-meta {
    font-size: 0.86rem;
    color: var(--muted);
}

.community-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .community-category-list li + li {
        margin-top: 10px;
    }

    .community-category-list a {
        text-decoration: none;
        color: var(--text);
        transition: 0.2s ease;
    }

        .community-category-list a:hover {
            color: var(--brand-700);
            padding-left: 2px;
        }

.community-article-card {
    overflow: hidden;
}

.community-hero-image-wrap {
    width: 100%;
    background: #f1f5f9;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.community-hero-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.community-article-body {
    padding: 28px;
}

.community-article-category {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(25, 135, 84, 0.08);
    color: var(--brand-700);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.community-article-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.community-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.community-article-intro {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(15, 23, 42, 0.78);
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid rgba(25, 135, 84, 0.18);
}

.community-article-content p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: rgba(15, 23, 42, 0.92);
    font-size: 1rem;
}

.community-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.community-tag {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--muted);
    font-size: 0.9rem;
}

.community-article-nav {
    margin-top: 28px;
}

.community-comment-card {
    padding: 24px;
}

.community-comment-empty {
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .community-article-body {
        padding: 22px;
    }

    .community-hero-image {
        max-height: 320px;
    }
}

@media (max-width: 768px) {
    .community-article-title {
        font-size: 1.55rem;
    }

    .community-comment-card,
    .community-sidebar-card {
        padding: 18px;
    }
}

/* ===== COMMUNITY LIST ===== */
.community-list-page {
    padding-bottom: 24px;
}

.community-mini-post-link {
    text-decoration: none;
    color: inherit;
}

    .community-mini-post-link:hover .community-mini-post-name {
        color: var(--brand-700);
    }

.community-list-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .community-list-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

.community-list-card-image-wrap {
    height: 100%;
    min-height: 220px;
    background: var(--surface-2);
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.community-list-card-image {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.community-list-card-placeholder {
    width: 100%;
    min-height: 220px;
    height: 100%;
    display: grid;
    place-items: center;
    background: rgba(25, 135, 84, 0.06);
    color: var(--brand-600);
    font-size: 2rem;
}

.community-list-card-body {
    padding: 24px;
}

.community-list-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.community-list-card-desc {
    color: rgba(15, 23, 42, 0.78);
    line-height: 1.75;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .community-list-card-image-wrap,
    .community-list-card-image,
    .community-list-card-placeholder {
        min-height: 200px;
    }

    .community-list-card-body {
        padding: 20px;
    }

    .community-list-card-title {
        font-size: 1.15rem;
    }
}
/* ===== FEED CALCULATOR ===== */
.feed-calculator-page {
    padding: 12px 0 32px;
}

.feed-calculator-card {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

    .feed-calculator-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 6px;
        background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
    }

.feed-calculator-header {
    margin-bottom: 26px;
}

.feed-calculator-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(25, 135, 84, 0.10);
    color: var(--brand-700);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.feed-calculator-title {
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 10px;
}

.feed-calculator-subtitle {
    color: rgba(15, 23, 42, 0.72);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 760px;
    margin-bottom: 0;
}

.feed-calculator-form .form-label {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.feed-calculator-form .form-control,
.feed-calculator-form .form-select {
    min-height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    padding-left: 16px;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

    .feed-calculator-form .form-control:focus,
    .feed-calculator-form .form-select:focus {
        border-color: rgba(25, 135, 84, 0.65);
        box-shadow: 0 0 0 0.24rem rgba(25, 135, 84, 0.12);
    }

.feed-calculator-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .feed-calculator-actions .btn {
        min-height: 50px;
        border-radius: 14px;
        font-size: 1rem;
        font-weight: 700;
        padding-left: 22px;
        padding-right: 22px;
    }

.feed-result-box {
    margin-top: 28px;
    border-radius: 20px;
    border: 1px solid rgba(25, 135, 84, 0.14);
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.08), rgba(255, 255, 255, 0.95));
    box-shadow: 0 10px 30px rgba(25, 135, 84, 0.08);
    padding: 22px 24px;
}

.feed-result-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--brand-800);
    margin-bottom: 10px;
}

.feed-result-content {
    color: rgba(15, 23, 42, 0.88);
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .feed-calculator-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .feed-calculator-title {
        font-size: 1.8rem;
    }

    .feed-calculator-subtitle {
        font-size: 0.96rem;
    }

    .feed-calculator-form .form-control,
    .feed-calculator-form .form-select {
        min-height: 52px;
    }

    .feed-calculator-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
.community-article-nav .btn {
    min-width: 150px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

/* ===== PREMIUM PRODUCT LIST ===== */
.product-list-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    padding: clamp(24px, 4vw, 38px);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(250, 248, 243, 0.96), rgba(255, 255, 255, 0.94)),
        url("/images/products/37_thit_treo_gac_bep.png") right center / 390px auto no-repeat;
    border: 1px solid rgba(47, 107, 59, 0.10);
    box-shadow: 0 18px 50px rgba(25, 52, 31, 0.08);
}

.product-list-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 107, 59, 0.09);
    border: 1px solid rgba(47, 107, 59, 0.14);
    color: #2F6B3B;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-list-hero h1 {
    max-width: 720px;
    margin: 16px 0 10px;
    color: #19341f;
    font-family: "Be Vietnam Pro", "Inter", Arial, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.02;
}

.product-list-hero p {
    max-width: 640px;
    color: rgba(25, 52, 31, 0.72);
    line-height: 1.75;
    margin: 0;
}

.product-list-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(47, 107, 59, 0.24);
    background: rgba(255, 255, 255, 0.86);
    color: #2F6B3B;
    font-weight: 800;
    padding: 11px 18px;
    white-space: nowrap;
}

.product-list-outline-btn:hover {
    background: #2F6B3B;
    color: #fff;
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-list-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(47, 107, 59, 0.10);
    box-shadow: 0 16px 42px rgba(25, 52, 31, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-list-card:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 107, 59, 0.22);
    box-shadow: 0 24px 64px rgba(25, 52, 31, 0.14);
}

.product-list-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3.15;
    overflow: hidden;
    background: #f3efe7;
}

.product-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.product-list-card:hover .product-list-image img {
    transform: scale(1.055);
}

.product-list-placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    color: rgba(47, 107, 59, 0.72);
}

.product-list-placeholder i,
.product-list-placeholder span {
    display: block;
    text-align: center;
}

.product-list-placeholder i {
    font-size: 2rem;
}

.product-list-stock {
    position: absolute;
    top: 14px;
    right: 14px;
    border-radius: 999px;
    background: rgba(250, 248, 243, 0.94);
    color: #2F6B3B;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 7px 11px;
}

.product-list-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.product-list-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.product-list-badges span,
.product-detail-labels span {
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(215, 168, 110, 0.16);
    color: #2F6B3B;
    font-size: 0.76rem;
    font-weight: 800;
}

.product-list-body h2 {
    font-size: 1.18rem;
    font-weight: 850;
    line-height: 1.35;
    margin-bottom: 10px;
}

.product-list-body h2 a {
    color: #19341f;
    text-decoration: none;
}

.product-list-body h2 a:hover {
    color: #2F6B3B;
}

.product-list-desc {
    color: rgba(25, 52, 31, 0.68);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.65;
    min-height: 52px;
    overflow: hidden;
}

.product-list-price-row,
.product-list-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-list-price-row {
    margin: auto 0 18px;
}

.product-list-price {
    color: #2F6B3B;
    font-size: 1.55rem;
    font-weight: 900;
}

.product-list-unit {
    color: rgba(25, 52, 31, 0.62);
    font-weight: 700;
}

.product-list-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #D7A86E;
    font-weight: 850;
}

.product-list-buy-form {
    flex: 1;
}

.product-list-buy-btn,
.product-detail-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: #2F6B3B;
    color: #fff;
    font-weight: 850;
    box-shadow: 0 14px 28px rgba(47, 107, 59, 0.22);
}

.product-list-buy-btn:hover,
.product-detail-buy-btn:hover {
    background: #255830;
    color: #fff;
    transform: translateY(-1px);
}

.product-list-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FAF8F3;
    color: #2F6B3B;
    text-decoration: none;
    border: 1px solid rgba(47, 107, 59, 0.12);
}

.product-list-detail-link:hover {
    background: rgba(47, 107, 59, 0.10);
    color: #255830;
}

/* ===== PREMIUM PRODUCT DETAIL ===== */
.product-detail-premium {
    padding-bottom: 24px;
}

.product-detail-premium-main {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 32px;
    align-items: start;
}

.product-detail-gallery,
.product-detail-summary-card,
.product-detail-info-card,
.product-detail-review-section figure {
    border: 1px solid rgba(47, 107, 59, 0.10);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(25, 52, 31, 0.08);
}

.product-detail-gallery {
    border-radius: 28px;
    padding: 16px;
}

.product-detail-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 1 / 0.88;
    background: #f3efe7;
}

.product-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-floating-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: rgba(250, 248, 243, 0.94);
    color: #2F6B3B;
    font-size: 0.84rem;
    font-weight: 850;
    padding: 8px 12px;
}

.product-detail-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.product-detail-thumb {
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 16px;
    background: #FAF8F3;
    aspect-ratio: 4 / 3;
    padding: 0;
}

.product-detail-thumb.active {
    border-color: #D7A86E;
}

.product-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-summary-card {
    position: sticky;
    top: 136px;
    border-radius: 28px;
    padding: clamp(24px, 4vw, 34px);
}

.product-detail-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-detail-summary-card h1 {
    color: #19341f;
    font-family: "Be Vietnam Pro", "Inter", Arial, sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.06;
    margin-bottom: 14px;
}

.product-detail-premium-desc {
    color: rgba(25, 52, 31, 0.72);
    line-height: 1.8;
}

.product-detail-premium-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 20px 0;
}

.product-detail-premium-price span {
    color: #2F6B3B;
    font-size: 2.35rem;
    font-weight: 950;
}

.product-detail-premium-price small {
    color: rgba(25, 52, 31, 0.62);
    font-size: 1rem;
    font-weight: 800;
}

.product-detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.product-detail-meta-grid div {
    border-radius: 18px;
    background: #FAF8F3;
    border: 1px solid rgba(47, 107, 59, 0.10);
    padding: 14px;
}

.product-detail-meta-grid i {
    color: #D7A86E;
    margin-right: 6px;
}

.product-detail-meta-grid span,
.product-detail-meta-grid strong {
    display: block;
}

.product-detail-meta-grid span {
    color: rgba(25, 52, 31, 0.62);
    font-size: 0.88rem;
}

.product-detail-meta-grid strong {
    color: #19341f;
}

.product-detail-buy-panel {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    align-items: end;
}

.product-detail-buy-panel label {
    color: #19341f;
    font-weight: 800;
}

.product-detail-buy-panel input {
    min-height: 48px;
    margin-top: 8px;
}

.product-detail-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    color: rgba(25, 52, 31, 0.72);
    font-weight: 700;
}

.product-detail-assurance i {
    color: #2F6B3B;
}

.product-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.product-detail-info-card {
    border-radius: 22px;
    padding: 22px;
}

.product-detail-shipping-card {
    grid-column: span 2;
}

.product-detail-info-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: rgba(215, 168, 110, 0.18);
    color: #2F6B3B;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.product-detail-info-card h2 {
    color: #19341f;
    font-size: 1.05rem;
    font-weight: 850;
    margin-bottom: 8px;
}

.product-detail-info-card p {
    color: rgba(25, 52, 31, 0.70);
    line-height: 1.7;
    margin: 0;
}

.product-detail-review-section {
    margin-top: 34px;
}

.product-detail-review-head span {
    color: #2F6B3B;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-detail-review-head h2 {
    color: #19341f;
    font-family: "Be Vietnam Pro", "Inter", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 8px 0 20px;
}

.product-detail-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-detail-review-section figure {
    border-radius: 22px;
    padding: 22px;
    margin: 0;
}

.product-detail-review-section figure div {
    color: #D7A86E;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.product-detail-review-section blockquote {
    color: rgba(25, 52, 31, 0.72);
    line-height: 1.7;
    margin: 0;
}

.product-detail-review-section figcaption {
    color: #2F6B3B;
    font-weight: 850;
    margin-top: 16px;
}

/* ===== REAL-TIME SOCIAL PROOF ===== */
.social-proof-popup {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 2100;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: min(380px, calc(100vw - 32px));
    padding: 16px;
    border-radius: 20px;
    background: rgba(250, 248, 243, 0.97);
    border: 1px solid rgba(47, 107, 59, 0.14);
    box-shadow: 0 20px 54px rgba(25, 52, 31, 0.18);
    color: #19341f;
    transform: translateX(calc(-100% - 32px));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.34s ease, opacity 0.34s ease;
}

.social-proof-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.social-proof-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 15px;
    background: #2F6B3B;
    color: #fff;
    box-shadow: 0 12px 24px rgba(47, 107, 59, 0.24);
}

.social-proof-label {
    color: #D7A86E;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.social-proof-message {
    color: #19341f;
    font-weight: 850;
    line-height: 1.35;
}

.social-proof-meta {
    color: rgba(25, 52, 31, 0.62);
    font-size: 0.86rem;
    margin-top: 5px;
}

/* ===== ORDER TRACKING ===== */
.tracking-page {
    padding-bottom: 28px;
}

.tracking-hero {
    margin-bottom: 26px;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(250, 248, 243, 0.97), rgba(255, 255, 255, 0.94)),
        url("/images/products/37_thit_treo_gac_bep.png") right center / 360px auto no-repeat;
    border: 1px solid rgba(47, 107, 59, 0.10);
    box-shadow: 0 18px 50px rgba(25, 52, 31, 0.08);
}

.tracking-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 107, 59, 0.09);
    border: 1px solid rgba(47, 107, 59, 0.14);
    color: #2F6B3B;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tracking-hero h1 {
    max-width: 720px;
    margin: 16px 0 10px;
    color: #19341f;
    font-family: "Be Vietnam Pro", "Inter", Arial, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    line-height: 1.02;
}

.tracking-hero p {
    max-width: 660px;
    margin: 0;
    color: rgba(25, 52, 31, 0.72);
    line-height: 1.75;
}

.tracking-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.tracking-search-card,
.tracking-summary-card,
.tracking-timeline-card,
.tracking-products-card,
.tracking-empty-card,
.tracking-welcome-card {
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(47, 107, 59, 0.10);
    box-shadow: 0 18px 50px rgba(25, 52, 31, 0.08);
}

.tracking-search-card {
    position: sticky;
    top: 136px;
    padding: 24px;
}

.tracking-search-card h2,
.tracking-summary-head h2,
.tracking-section-head h2,
.tracking-empty-card h2,
.tracking-welcome-card h2 {
    color: #19341f;
    font-family: "Be Vietnam Pro", "Inter", Arial, sans-serif;
    font-weight: 700;
}

.tracking-search-card h2 {
    font-size: 1.65rem;
    margin-bottom: 18px;
}

.tracking-form {
    display: grid;
    gap: 16px;
}

.tracking-form label {
    color: #19341f;
    font-weight: 800;
}

.tracking-form .form-control {
    min-height: 50px;
    margin-top: 8px;
    border-radius: 16px;
}

.tracking-submit-btn,
.tracking-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: #2F6B3B;
    color: #fff;
    font-weight: 850;
    box-shadow: 0 14px 28px rgba(47, 107, 59, 0.22);
}

.tracking-submit-btn:hover,
.tracking-secondary-btn:hover {
    background: #255830;
    color: #fff;
}

.tracking-privacy-note {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding: 14px;
    border-radius: 18px;
    background: #FAF8F3;
    color: rgba(25, 52, 31, 0.70);
    line-height: 1.55;
    font-size: 0.92rem;
}

.tracking-privacy-note i {
    color: #2F6B3B;
    margin-top: 2px;
}

.tracking-result {
    display: grid;
    gap: 18px;
}

.tracking-summary-card,
.tracking-timeline-card,
.tracking-products-card {
    padding: clamp(20px, 3vw, 28px);
}

.tracking-summary-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.tracking-muted,
.tracking-stats-grid span,
.tracking-ghn-box span,
.tracking-section-head span,
.tracking-product-row span {
    color: rgba(25, 52, 31, 0.60);
    font-size: 0.86rem;
    font-weight: 750;
}

.tracking-summary-head h2 {
    margin: 2px 0 0;
    font-size: 2rem;
}

.tracking-status-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.tracking-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.84rem;
    font-weight: 850;
}

.tracking-pill-success {
    background: rgba(47, 107, 59, 0.10);
    color: #2F6B3B;
}

.tracking-pill-warning {
    background: rgba(215, 168, 110, 0.18);
    color: #8a5c24;
}

.tracking-pill-info {
    background: rgba(14, 116, 144, 0.10);
    color: #0e7490;
}

.tracking-pill-danger {
    background: rgba(220, 38, 38, 0.10);
    color: #b91c1c;
}

.tracking-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.tracking-stats-grid div,
.tracking-ghn-box,
.tracking-product-row {
    border-radius: 18px;
    background: #FAF8F3;
    border: 1px solid rgba(47, 107, 59, 0.10);
}

.tracking-stats-grid div {
    padding: 14px;
}

.tracking-stats-grid strong,
.tracking-ghn-box strong,
.tracking-product-row strong {
    display: block;
    color: #19341f;
    margin-top: 4px;
}

.tracking-ghn-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
    padding: 14px;
}

.tracking-section-head {
    margin-bottom: 18px;
}

.tracking-section-head span {
    color: #2F6B3B;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tracking-section-head h2 {
    font-size: 1.85rem;
    margin: 5px 0 0;
}

.tracking-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    position: relative;
}

.tracking-step {
    position: relative;
    text-align: center;
    color: rgba(25, 52, 31, 0.52);
    font-weight: 800;
}

.tracking-step::before {
    content: "";
    position: absolute;
    top: 23px;
    left: calc(-50% + 28px);
    width: calc(100% - 44px);
    height: 3px;
    background: rgba(47, 107, 59, 0.14);
}

.tracking-step:first-child::before {
    display: none;
}

.tracking-step.is-active::before {
    background: #2F6B3B;
}

.tracking-step-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: #FAF8F3;
    border: 2px solid rgba(47, 107, 59, 0.18);
    color: rgba(47, 107, 59, 0.48);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.tracking-step.is-active {
    color: #19341f;
}

.tracking-step.is-active .tracking-step-dot {
    background: #2F6B3B;
    border-color: #2F6B3B;
    color: #fff;
    box-shadow: 0 12px 26px rgba(47, 107, 59, 0.22);
    transform: translateY(-2px);
}

.tracking-timeline.is-cancelled .tracking-step::before {
    background: rgba(220, 38, 38, 0.16);
}

.tracking-cancelled-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
    font-weight: 750;
}

.tracking-product-list {
    display: grid;
    gap: 10px;
}

.tracking-product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
}

.tracking-product-row span {
    display: block;
    margin-top: 3px;
}

.tracking-empty-card,
.tracking-welcome-card {
    display: grid;
    justify-items: center;
    padding: clamp(28px, 5vw, 54px);
    text-align: center;
}

.tracking-empty-card > i,
.tracking-welcome-card > i {
    color: #2F6B3B;
    font-size: 3rem;
    margin-bottom: 14px;
}

.tracking-empty-card p,
.tracking-welcome-card p {
    max-width: 520px;
    color: rgba(25, 52, 31, 0.70);
    line-height: 1.75;
}

/* ===== ADMIN DASHBOARD ===== */
.admin-dashboard {
    padding-bottom: 28px;
}

.admin-dashboard-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(250, 248, 243, 0.98), rgba(255, 255, 255, 0.94)),
        url("/images/products/37_thit_treo_gac_bep.png") right center / 380px auto no-repeat;
    border: 1px solid rgba(47, 107, 59, 0.10);
    box-shadow: 0 18px 50px rgba(25, 52, 31, 0.08);
}

.admin-dashboard-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 107, 59, 0.09);
    border: 1px solid rgba(47, 107, 59, 0.14);
    color: #2F6B3B;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-dashboard-hero h1 {
    max-width: 760px;
    margin: 16px 0 10px;
    color: #19341f;
    font-family: "Be Vietnam Pro", "Inter", Arial, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.02;
}

.admin-dashboard-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(25, 52, 31, 0.72);
    line-height: 1.75;
}

.admin-dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-dashboard-primary-btn,
.admin-dashboard-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border-radius: 999px;
    font-weight: 850;
    padding: 10px 18px;
    white-space: nowrap;
}

.admin-dashboard-primary-btn {
    background: #2F6B3B;
    border: 1px solid #2F6B3B;
    color: #fff;
    box-shadow: 0 14px 28px rgba(47, 107, 59, 0.22);
}

.admin-dashboard-primary-btn:hover {
    background: #255830;
    color: #fff;
}

.admin-dashboard-outline-btn {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(47, 107, 59, 0.22);
    color: #2F6B3B;
}

.admin-dashboard-outline-btn:hover {
    background: #2F6B3B;
    color: #fff;
}

.admin-dashboard-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    padding: 15px 18px;
    border-radius: 20px;
    background: rgba(215, 168, 110, 0.16);
    border: 1px solid rgba(215, 168, 110, 0.32);
    color: #6f481b;
}

.admin-dashboard-alert i,
.admin-dashboard-alert a {
    color: #2F6B3B;
    font-weight: 850;
}

.admin-kpi-grid,
.admin-chart-grid,
.admin-lists-grid {
    display: grid;
    gap: 20px;
}

.admin-kpi-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-bottom: 22px;
}

.admin-kpi-card,
.admin-panel {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(47, 107, 59, 0.10);
    box-shadow: 0 18px 50px rgba(25, 52, 31, 0.08);
}

.admin-kpi-card {
    min-height: 178px;
    padding: 20px;
}

.admin-kpi-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(47, 107, 59, 0.10);
    color: #2F6B3B;
    font-size: 1.35rem;
}

.admin-kpi-card span,
.admin-panel-head span {
    color: rgba(25, 52, 31, 0.62);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.admin-kpi-card strong {
    display: block;
    margin: 6px 0 4px;
    color: #19341f;
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    line-height: 1.1;
}

.admin-kpi-card small {
    color: rgba(25, 52, 31, 0.58);
    line-height: 1.45;
}

.admin-chart-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 22px;
}

.admin-chart-wide {
    grid-column: span 2;
}

.admin-panel {
    overflow: hidden;
}

.admin-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(47, 107, 59, 0.08);
}

.admin-panel-head h2 {
    margin: 4px 0 0;
    color: #19341f;
    font-family: "Be Vietnam Pro", "Inter", Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
}

.admin-chart-box {
    height: 320px;
    padding: 20px;
}

.admin-lists-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 22px;
}

.admin-rank-list {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.admin-rank-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    background: #FAF8F3;
    border: 1px solid rgba(47, 107, 59, 0.08);
}

.admin-rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 8px;
    border-radius: 14px;
    background: #2F6B3B;
    color: #fff;
    font-weight: 900;
}

.admin-rank-row strong,
.admin-rank-row small {
    display: block;
}

.admin-rank-row strong {
    color: #19341f;
    line-height: 1.35;
}

.admin-rank-row small {
    color: rgba(25, 52, 31, 0.62);
    margin-top: 3px;
}

.admin-empty {
    padding: 18px;
    color: rgba(25, 52, 31, 0.62);
    text-align: center;
}

.admin-orders-panel {
    margin-bottom: 6px;
}

.admin-orders-table thead th {
    background: #FAF8F3;
    color: rgba(25, 52, 31, 0.72);
    border-bottom: 1px solid rgba(47, 107, 59, 0.10);
}

.admin-orders-table td {
    border-color: rgba(47, 107, 59, 0.08);
}

.admin-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 0.82rem;
    font-weight: 850;
    background: rgba(100, 116, 139, 0.10);
    color: #475569;
}

.admin-status-success {
    background: rgba(47, 107, 59, 0.10);
    color: #2F6B3B;
}

.admin-status-warning {
    background: rgba(215, 168, 110, 0.18);
    color: #8a5c24;
}

.admin-status-info {
    background: rgba(14, 116, 144, 0.10);
    color: #0e7490;
}

.admin-status-primary {
    background: rgba(47, 107, 59, 0.12);
    color: #255830;
}

.admin-status-danger {
    background: rgba(220, 38, 38, 0.10);
    color: #b91c1c;
}

@media (max-width: 1199px) {
    .product-list-grid,
    .product-detail-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-kpi-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-lists-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .product-detail-premium-main {
        grid-template-columns: 1fr;
    }

    .product-detail-summary-card {
        position: static;
    }
}

@media (max-width: 767px) {
    .product-list-hero {
        align-items: flex-start;
        flex-direction: column;
        background: #FAF8F3;
    }

    .product-list-outline-btn {
        width: 100%;
        justify-content: center;
    }

    .product-list-grid,
    .product-detail-info-grid,
    .product-detail-review-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-shipping-card {
        grid-column: auto;
    }

    .product-detail-buy-panel {
        grid-template-columns: 1fr;
    }

    .product-detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .social-proof-popup {
        left: 16px;
        bottom: 16px;
    }
}

@media (max-width: 991px) {
    .tracking-layout {
        grid-template-columns: 1fr;
    }

    .tracking-search-card {
        position: static;
    }

    .tracking-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-dashboard-hero {
        align-items: flex-start;
        flex-direction: column;
        background: #FAF8F3;
    }

    .admin-dashboard-actions {
        width: 100%;
    }

    .admin-dashboard-actions .btn {
        flex: 1 1 180px;
    }

    .admin-chart-grid,
    .admin-chart-wide,
    .admin-lists-grid {
        grid-template-columns: 1fr;
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .tracking-hero {
        background: #FAF8F3;
    }

    .tracking-summary-head,
    .tracking-product-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .tracking-status-stack {
        justify-content: flex-start;
    }

    .tracking-stats-grid,
    .tracking-ghn-box {
        grid-template-columns: 1fr;
    }

    .tracking-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tracking-step {
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .tracking-step::before {
        left: 24px;
        top: -16px;
        width: 3px;
        height: 18px;
    }

    .tracking-step-dot {
        margin-bottom: 0;
    }

    .admin-kpi-grid {
        grid-template-columns: 1fr;
    }

    .admin-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-chart-box {
        height: 280px;
    }
}

.community-comment-card textarea.form-control {
    border-radius: 16px;
    min-height: 120px;
    resize: vertical;
}

.community-comment-card .border.rounded-4 {
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-page {
    padding-bottom: 32px;
}

.product-detail-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-2);
    border: 1px solid var(--border);
    aspect-ratio: 1;
}

.product-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

.product-detail-placeholder i {
    font-size: 4rem;
    margin-bottom: 12px;
}

.product-detail-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    background: rgba(25, 135, 84, 0.9);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
}

.product-detail-info {
    padding: 0 0 0 0.5rem;
}

.product-detail-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-detail-desc {
    color: rgba(15, 23, 42, 0.85);
    line-height: 1.75;
    margin-bottom: 24px;
}

.product-detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-700);
}

.product-detail-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
}

.product-detail-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(25, 135, 84, 0.08);
    border-radius: 12px;
    margin-bottom: 28px;
}

.product-detail-add-form .product-detail-qty {
    width: 90px;
    min-height: 48px;
}

.product-detail-add-btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 14px 24px;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

@media (max-width: 991px) {
    .product-detail-info {
        padding: 0;
    }
}

/* ===== CHATBOT HỖ TRỢ NHANH ===== */
.chatbot-widget {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 1050;
}

.chatbot-trigger {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
    color: #fff;
    border: none;
    box-shadow: 0 8px 22px rgba(25, 135, 84, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.chatbot-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(25, 135, 84, 0.45);
}

.chatbot-panel {
    position: absolute;
    bottom: 62px;
    right: 0;
    width: 340px;
    height: min(520px, calc(100dvh - 110px));
    max-width: calc(100vw - 36px);
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.18);
    border: 1px solid var(--border);
    overflow: hidden;
    transform-origin: right bottom;
    animation: chatbotPanelIn 0.18s ease-out;
}

.chatbot-panel.is-open {
    display: block;
}

@keyframes chatbotPanelIn {
    from {
        opacity: 0;
        transform: translate3d(0, 10px, 0) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 10px 14px;
    background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.chatbot-close {
    background: none;
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.9;
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-body {
    height: calc(100% - 46px);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-messages {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-right: 3px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.chatbot-msg {
    display: flex;
}

.chatbot-msg-bot {
    justify-content: flex-start;
}

.chatbot-msg-user {
    justify-content: flex-end;
}

.chatbot-msg-text {
    max-width: 82%;
    padding: 7px 10px;
    border-radius: 14px;
    font-size: 0.875rem;
    line-height: 1.38;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.06);
}

.chatbot-msg-bot .chatbot-msg-text {
    background: rgba(25, 135, 84, 0.08);
    color: var(--brand-800);
    border-bottom-left-radius: 5px;
}

.chatbot-msg-user .chatbot-msg-text {
    background: var(--brand-600);
    color: #fff;
    border-bottom-right-radius: 5px;
}

.chatbot-msg-error .chatbot-msg-text {
    background: rgba(220, 53, 69, 0.08);
    color: #b4232f;
}

.chatbot-msg-typing .chatbot-msg-text {
    color: var(--muted);
    font-style: italic;
}

.chatbot-welcome {
    color: var(--muted);
    font-size: 0.78rem;
}

.chatbot-questions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
}

.chatbot-question-btn {
    width: auto;
    text-align: left;
    border-radius: 999px;
    border: 1px solid rgba(25, 135, 84, 0.2);
    padding: 5px 9px;
    font-size: 0.82rem;
    line-height: 1.2;
    background: #fff;
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.chatbot-question-btn:hover {
    background: rgba(25, 135, 84, 0.06);
    border-color: rgba(25, 135, 84, 0.5);
}

.chatbot-question-btn:disabled {
    cursor: wait;
    opacity: 0.65;
}

.chatbot-form {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-top: 2px;
}

.chatbot-input {
    min-width: 0;
    flex: 1 1 auto;
    min-height: 38px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 999px;
    padding: 0 12px;
    font-size: 0.875rem;
    outline: none;
}

.chatbot-input:focus {
    border-color: rgba(25, 135, 84, 0.65);
    box-shadow: 0 0 0 0.18rem rgba(25, 135, 84, 0.12);
}

.chatbot-send {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--brand-600);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.chatbot-send:hover {
    background: var(--brand-700);
}

[data-stock-display].is-out-of-stock {
    color: #dc3545 !important;
    font-weight: 700;
}

.tracking-hero-compact {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.tracking-layout-single {
    grid-template-columns: 1fr;
}

.tracking-list-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.tracking-order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.tracking-order-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    padding: 18px;
}

.tracking-order-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.tracking-order-card-head h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 2px 0 0;
}

.tracking-order-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.tracking-order-meta dt {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.tracking-order-meta dd {
    margin-bottom: 0;
    font-weight: 650;
}

.tracking-order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tracking-order-actions .btn {
    min-width: 104px;
}

@media (max-width: 768px) {
    .tracking-hero-compact {
        align-items: flex-start;
        flex-direction: column;
    }

    .tracking-order-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .chatbot-widget {
        right: 12px;
        bottom: 12px;
    }

    .chatbot-trigger {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .chatbot-panel {
        right: 0;
        bottom: 58px;
        width: min(340px, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        height: min(500px, calc(100dvh - 92px));
        max-height: calc(100dvh - 92px);
    }

    .chatbot-header {
        min-height: 44px;
        padding: 9px 12px;
        font-size: 0.95rem;
    }

    .chatbot-msg-text {
        max-width: 84%;
        font-size: 0.86rem;
    }

    .chatbot-question-btn {
        font-size: 0.8rem;
        padding: 5px 8px;
    }

    .chatbot-input {
        min-height: 36px;
        font-size: 0.86rem;
    }

    .chatbot-send {
        width: 36px;
        height: 36px;
    }
}

/* ===== ABOUT PAGE ===== */
.about-page {
    padding-bottom: 32px;
}

.about-hero {
    text-align: center;
    padding: 24px 0;
}

.about-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xs);
    margin-bottom: 24px;
}

.about-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(25, 135, 84, 0.2);
}

.about-section-desc {
    color: var(--muted);
    line-height: 1.7;
}

.about-content-card p {
    color: rgba(15, 23, 42, 0.85);
    line-height: 1.8;
    margin-bottom: 16px;
}

    .about-content-card p:last-child {
        margin-bottom: 0;
    }

/* Shopping steps */
.about-shopping-steps {
    margin-bottom: 0;
}

.shopping-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shopping-step {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(25, 135, 84, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(25, 135, 84, 0.1);
}

.shopping-step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
}

.shopping-step-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.shopping-step-content p {
    margin-bottom: 0 !important;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(15, 23, 42, 0.8);
}

/* About sidebar */
.about-sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xs);
    position: sticky;
    top: 120px;
}

.about-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.about-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.about-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 1.5;
}

    .about-contact-list li:last-child {
        margin-bottom: 0;
    }

.about-contact-list i {
    font-size: 1.1rem;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .about-sidebar-card {
        position: static;
    }
}

/* ===== HOME PREMIUM ORGANIC FARM ===== */
.home-premium-hero,
.home-premium-section,
.home-premium-trust,
.home-premium-footer-cta {
    background: #FAF8F3;
}

.home-premium-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 8vw, 112px) 0 72px;
}

.home-premium-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(250, 248, 243, 0.98) 0%,
            rgba(250, 248, 243, 0.88) 55%,
            rgba(47, 107, 59, 0.08) 100%
        );
    pointer-events: none;
}

.home-premium-hero .container {
    position: relative;
    z-index: 1;
}

.home-premium-eyebrow,
.home-premium-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #2F6B3B;
    background: rgba(47, 107, 59, 0.09);
    border: 1px solid rgba(47, 107, 59, 0.14);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-premium-title {
    max-width: 720px;
    margin: 18px 0 18px;
    color: #19341f;
    font-family: "Be Vietnam Pro", "Inter", Arial, sans-serif;
    font-size: clamp(3rem, 8vw, 6.25rem);
    font-weight: 700;
    line-height: 0.98;
}

.home-premium-lead {
    max-width: 610px;
    color: rgba(25, 52, 31, 0.78);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 28px;
}

.home-premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.home-premium-btn-primary,
.home-premium-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
}

.home-premium-btn-primary {
    background: #2F6B3B;
    border: 1px solid #2F6B3B;
    color: #fff;
    box-shadow: 0 16px 30px rgba(47, 107, 59, 0.24);
}

.home-premium-btn-primary:hover {
    background: #255830;
    border-color: #255830;
    color: #fff;
    transform: translateY(-1px);
}

.home-premium-btn-outline {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(47, 107, 59, 0.28);
    color: #2F6B3B;
}

.home-premium-btn-outline:hover {
    background: #fff;
    border-color: #2F6B3B;
    color: #255830;
}

.home-premium-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 640px;
}

.home-premium-hero-points div,
.home-premium-process-card,
.home-premium-product-card,
.home-premium-why-card,
.home-premium-feedback-card,
.home-premium-footer-box {
    border: 1px solid rgba(47, 107, 59, 0.11);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 50px rgba(25, 52, 31, 0.08);
}

.home-premium-hero-points div {
    border-radius: 18px;
    padding: 16px;
}

.home-premium-hero-points strong,
.home-premium-trust strong {
    display: block;
    color: #2F6B3B;
    font-size: 1.45rem;
    line-height: 1.1;
}

.home-premium-hero-points span,
.home-premium-trust span {
    display: block;
    color: rgba(25, 52, 31, 0.66);
    font-size: 0.9rem;
    margin-top: 5px;
}

.home-premium-hero-media {
    position: relative;
    max-width: 520px;
    margin-left: auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(25, 52, 31, 0.18);
    aspect-ratio: 4 / 4.6;
    background: #fff;
    z-index: 2;
}

.home-premium-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-premium-hero-card {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    border-radius: 20px;
    padding: 18px;
    background: rgba(250, 248, 243, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
}

.home-premium-hero-card span {
    color: #D7A86E;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-premium-hero-card strong,
.home-premium-hero-card small {
    display: block;
}

.home-premium-hero-card strong {
    color: #19341f;
    font-size: 1.35rem;
    margin: 3px 0 4px;
}

.home-premium-hero-card small {
    color: rgba(25, 52, 31, 0.72);
    line-height: 1.5;
}

.home-premium-section {
    padding: 78px 0;
}

.home-premium-process {
    background: #fff;
}

.home-premium-section-head {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.home-premium-section-head h2,
.home-premium-why h2,
.home-premium-footer-box h2 {
    color: #19341f;
    font-family: "Be Vietnam Pro", "Inter", Arial, sans-serif;
    font-size: clamp(2.15rem, 4vw, 3.45rem);
    line-height: 1.08;
    font-weight: 700;
    margin: 16px 0 12px;
}

.home-premium-section-head p,
.home-premium-why p {
    color: rgba(25, 52, 31, 0.72);
    line-height: 1.8;
    margin: 0;
}

.home-premium-process-grid,
.home-premium-product-grid,
.home-premium-feedback-grid,
.home-premium-trust-grid {
    display: grid;
    gap: 22px;
}

.home-premium-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-premium-process-card,
.home-premium-why-card,
.home-premium-feedback-card {
    border-radius: 22px;
    padding: 24px;
}

.home-premium-process-card {
    position: relative;
    min-height: 245px;
}

.home-premium-process-card span {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(47, 107, 59, 0.12);
    font-size: 2rem;
    font-weight: 900;
}

.home-premium-process-card i,
.home-premium-why-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(215, 168, 110, 0.18);
    color: #2F6B3B;
    font-size: 1.55rem;
    margin-bottom: 18px;
}

.home-premium-process-card h3,
.home-premium-product-body h3,
.home-premium-why-card h3 {
    color: #19341f;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.home-premium-process-card p,
.home-premium-product-body p,
.home-premium-why-card p,
.home-premium-feedback-card blockquote {
    color: rgba(25, 52, 31, 0.70);
    line-height: 1.65;
    margin: 0;
}

.home-premium-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-premium-product-card {
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-premium-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 58px rgba(25, 52, 31, 0.12);
}

.home-premium-product-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f2eee5;
}

.home-premium-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.home-premium-product-card:hover .home-premium-product-media img {
    transform: scale(1.04);
}

.home-premium-product-media span {
    position: absolute;
    left: 14px;
    top: 14px;
    border-radius: 999px;
    background: rgba(250, 248, 243, 0.92);
    color: #2F6B3B;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 7px 11px;
}

.home-premium-product-body {
    padding: 20px;
}

.home-premium-product-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2F6B3B;
    font-weight: 800;
    text-decoration: none;
    margin-top: 18px;
}

.home-premium-product-link:hover {
    color: #255830;
}

.home-premium-why {
    background: linear-gradient(135deg, #19341f 0%, #2F6B3B 100%);
}

.home-premium-why .home-premium-kicker {
    color: #FAF8F3;
    background: rgba(250, 248, 243, 0.12);
    border-color: rgba(250, 248, 243, 0.22);
}

.home-premium-why h2,
.home-premium-why > .container > .row > div:first-child p {
    color: #FAF8F3;
}

.home-premium-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.home-premium-why-card {
    background: rgba(250, 248, 243, 0.96);
}

.home-premium-feedback-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-premium-feedback-card {
    margin: 0;
}

.home-premium-stars {
    color: #D7A86E;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.home-premium-feedback-card blockquote {
    font-size: 1rem;
}

.home-premium-feedback-card figcaption {
    color: #2F6B3B;
    font-weight: 800;
    margin-top: 18px;
}

.home-premium-trust {
    padding: 38px 0;
}

.home-premium-trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 26px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(47, 107, 59, 0.10);
    box-shadow: 0 18px 50px rgba(25, 52, 31, 0.08);
}

.home-premium-trust-grid div {
    text-align: center;
    padding: 10px;
}

.home-premium-footer-cta {
    padding: 42px 0 78px;
}

.home-premium-footer-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 28px;
    padding: clamp(24px, 4vw, 44px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 248, 243, 0.94)),
        url("/images/products/04_nac_vai.png") right center / 360px auto no-repeat;
}

.home-premium-footer-box h2 {
    max-width: 650px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .home-premium-process-grid,
    .home-premium-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .home-premium-hero::before {
        background: linear-gradient(180deg, rgba(250, 248, 243, 0.98), rgba(250, 248, 243, 0.9));
    }

    .home-premium-hero-media {
        margin: 0 auto;
        max-width: 520px;
        aspect-ratio: 16 / 12;
    }

    .home-premium-feedback-grid,
    .home-premium-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-premium-footer-box {
        align-items: flex-start;
        flex-direction: column;
        background: #fff;
    }
}

@media (max-width: 767px) {
    .home-premium-hero {
        padding: 48px 0 54px;
    }

    .home-premium-title {
        font-size: clamp(2.65rem, 16vw, 4.2rem);
    }

    .home-premium-actions .btn,
    .home-premium-footer-box .btn {
        width: 100%;
    }

    .home-premium-hero-points,
    .home-premium-process-grid,
    .home-premium-product-grid,
    .home-premium-why-grid,
    .home-premium-feedback-grid,
    .home-premium-trust-grid {
        grid-template-columns: 1fr;
    }

    .home-premium-section {
        padding: 56px 0;
    }

    .home-premium-section-head {
        text-align: left;
    }

    .home-premium-hero-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .home-premium-trust-grid {
        padding: 18px;
    }
}


