:root {
    --background: #f7f4ee;
    --surface: #ffffff;
    --surface-soft: #eef1e8;

    --text: #243126;
    --muted: #687267;

    --accent: #52654f;
    --accent-dark: #354535;

    --border: #dfe5da;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    background: var(--background);

    color: var(--text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;
}


.container {
    width: min(
        1120px,
        calc(100% - 40px)
    );

    margin: 0 auto;
}


.narrow {
    max-width: 760px;
}


/* Navigation */

.site-header {
    position: sticky;

    top: 0;

    z-index: 10;

    background:
        rgba(247, 244, 238, 0.96);

    border-bottom:
        1px solid var(--border);
}


.nav-wrap {
    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 24px;
}


.brand {
    color: var(--text);

    font-size: 1.1rem;

    font-weight: 700;

    text-decoration: none;
}


.site-nav {
    display: flex;

    gap: 24px;

    flex-wrap: wrap;
}


.site-nav a {
    color: var(--text);

    text-decoration: none;

    font-weight: 500;
}


.site-nav a:hover {
    color: var(--accent);
}


/* Hero */

.hero {
    padding: 96px 0;
}


.hero-grid {
    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 64px;

    align-items: center;
}


.eyebrow {
    margin:
        0 0 12px;

    color: var(--accent);

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


h1,
h2,
h3,
p {
    margin-top: 0;
}


h1 {
    max-width: 700px;

    margin-bottom: 24px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            3rem,
            7vw,
            5.6rem
        );

    line-height: 0.98;

    font-weight: 500;
}


h2 {
    margin-bottom: 20px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2rem,
            4vw,
            3.25rem
        );

    line-height: 1.1;

    font-weight: 500;
}


h3 {
    margin-bottom: 12px;

    font-size: 1.2rem;
}


.hero-text {
    max-width: 620px;

    margin-bottom: 32px;

    color: var(--muted);

    font-size: 1.1rem;
}


/* Buttons */

.button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 0 24px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 700;
}


.button-primary {
    background: var(--accent-dark);

    color: white;
}


.button-primary:hover {
    opacity: 0.9;
}


.button-secondary {
    border: 1px solid var(--accent-dark);
    color: var(--accent-dark);

    min-width: 180px;
    white-space: nowrap;
    padding: 0 28px;
}

.button-secondary:hover {
    background: var(--accent-dark);
    color: white;
}


/* Hero Visual */

.hero-card {
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    border-radius: 32px;
    background:
        radial-gradient(
            circle at top left,
            rgba(255,255,255,0.95),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #c9d3bd,
            #879879
        );

    box-shadow:
        0 24px 70px
        rgba(53,69,53,0.16);
}


.hero-card-content {
    display: grid;

    gap: 6px;

    padding: 20px 22px;

    border-radius: 20px;

    background:
        rgba(255,255,255,0.84);

    backdrop-filter:
        blur(8px);
}


.hero-card-content span {
    color: var(--muted);
}


/* Sections */

.section {
    padding: 88px 0;
}


.section-soft {
    background: var(--surface-soft);
}


.section-heading {
    max-width: 680px;

    margin-bottom: 40px;
}


/* Product Cards */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


.product-card {
    padding: 20px;

    border:
        1px solid var(--border);

    border-radius: 24px;

    background: var(--surface);
}


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


.product-image {
    min-height: 220px;

    margin-bottom: 20px;

    border-radius: 18px;
}


.placeholder-one {
    background:
        linear-gradient(
            145deg,
            #dde5d5,
            #a8b99d
        );
}


.placeholder-two {
    background:
        linear-gradient(
            145deg,
            #d8d0c5,
            #a99482
        );
}


.placeholder-three {
    background:
        linear-gradient(
            145deg,
            #ebe2cf,
            #c4b28b
        );
}


/* Values */

.values-section {
    background: var(--accent-dark);

    color: white;
}


.values-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


.values-grid p {
    color:
        rgba(
            255,
            255,
            255,
            0.72
        );
}


/* Contact CTA */

.contact-card {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 32px;

    padding: 48px;

    border:
        1px solid var(--border);

    border-radius: 28px;

    background: var(--surface);
}


.contact-card p {
    color: var(--muted);
}


/* Footer */

.site-footer {
    padding: 32px 0;

    border-top:
        1px solid var(--border);
}


.footer-wrap {
    display: flex;

    justify-content:
        space-between;

    gap: 20px;

    color: var(--muted);
}


.footer-wrap strong {
    color: var(--text);
}


/* Tablet */

@media (max-width: 800px) {

    .hero {
        padding: 64px 0;
    }


    .hero-grid,
    .product-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }


    .hero-card {
        min-height: 340px;
    }


    .contact-card,
    .footer-wrap {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .container {
        width:
            min(
                100% - 28px,
                1120px
            );
    }


    .nav-wrap {
        align-items: flex-start;

        flex-direction: column;

        padding: 16px 0;
    }


    .site-nav {
        gap: 16px;
    }


    .section {
        padding: 64px 0;
    }


    .contact-card {
        padding: 28px;
    }

}

/* ==================================================
   V0.40.2 CONTACT PAGE
   ================================================== */


.contact-body {
    margin: 0;
    min-height: 100vh;

    background: #faf7f1;

    color: #18271d;
}


/* HEADER */

.contact-header {
    height: 82px;

    display: grid;

    grid-template-columns:
        220px 1fr 180px;

    align-items: center;

    padding: 0 72px;

    background: #faf7f1;

    border-bottom:
        1px solid rgba(24, 39, 29, 0.05);
}


.contact-logo {
    display: inline-flex;

    flex-direction: column;

    width: fit-content;

    color: #173e2a;

    text-decoration: none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    line-height: 1;
}


.contact-logo span {
    font-size: 17px;

    letter-spacing: 0.03em;
}


.contact-logo small {
    margin-top: 2px;

    font-size: 7px;

    letter-spacing: 0.08em;
}


.contact-nav {
    display: flex;

    justify-content: center;

    gap: 56px;
}


.contact-nav a {
    position: relative;

    color: #18271d;

    text-decoration: none;

    font-size: 14px;
}


.contact-nav a:hover,
.contact-nav a.active {
    color: #174c31;
}


.contact-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: -8px;

    height: 1px;

    background: #174c31;
}


.enquire-button {
    justify-self: end;

    min-width: 150px;

    padding: 14px 25px;

    border-radius: 40px;

    background: #174c31;

    color: white;

    text-align: center;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;
}


.enquire-button:hover {
    background: #103b26;
}



/* MAIN LAYOUT */

.enquiry-layout {
    min-height:
        calc(100vh - 82px);

    display: grid;

    grid-template-columns:
        36% 64%;
}



/* LEFT PANEL */

.enquiry-brand-panel {
    position: relative;

    overflow: hidden;

    min-height:
        calc(100vh - 82px);

    padding: 82px 72px;

    background: #174c31;

    color: white;
}


.enquiry-brand-content {
    position: relative;

    z-index: 2;

    max-width: 410px;
}


.panel-label {
    margin-bottom: 28px;

    color: #a6b79d;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.02em;
}


.enquiry-brand-panel h1 {
    margin-bottom: 30px;

    color: #faf7f1;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            3rem,
            4vw,
            4.5rem
        );

    font-weight: 400;

    line-height: 1.12;
}


.panel-description {
    max-width: 390px;

    color:
        rgba(
            255,
            255,
            255,
            0.82
        );

    font-size: 16px;

    line-height: 1.6;
}


.contact-email {
    display: inline-block;

    margin-top: 70px;

    color: white;

    text-decoration: none;

    font-size: 14px;
}


.contact-email:hover {
    text-decoration: underline;
}



/* DECORATIVE LEAF */

.leaf-decoration {
    position: absolute;

    left: 36px;

    bottom: 80px;

    width: 105px;

    height: 230px;

    border-radius:
        80% 30% 80% 30%;

    background: #8ca188;

    transform: rotate(26deg);

    opacity: 0.95;
}



/* FORM SECTION */

.enquiry-form-section {
    display: flex;

    justify-content: center;

    padding:
        70px 90px 90px;

    background: #faf7f1;
}


.enquiry-form-container {
    width: 100%;

    max-width: 690px;
}


.form-heading {
    margin-bottom: 42px;
}


.form-heading h2 {
    margin-bottom: 6px;

    color: #18271d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 46px;

    font-weight: 400;
}


.form-heading p {
    margin: 0;

    color: #738077;

    font-size: 15px;
}



/* FORM */

.enquiry-form {
    width: 100%;
}


.enquiry-field {
    margin-bottom: 25px;
}


.enquiry-field label {
    display: block;

    margin-bottom: 9px;

    color: #18271d;

    font-size: 13px;

    font-weight: 600;
}


.enquiry-field input,
.enquiry-field textarea {
    width: 100%;

    padding:
        17px 18px;

    border:
        1px solid #ccd2c6;

    border-radius: 9px;

    background:
        rgba(
            255,
            255,
            255,
            0.65
        );

    color: #18271d;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}


.enquiry-field input {
    min-height: 52px;
}


.enquiry-field textarea {
    min-height: 145px;

    resize: vertical;
}


.enquiry-field input::placeholder,
.enquiry-field textarea::placeholder {
    color: #8c978f;
}


.enquiry-field input:focus,
.enquiry-field textarea:focus {
    border-color: #174c31;

    box-shadow:
        0 0 0 3px
        rgba(23, 76, 49, 0.08);
}



/* CAPTCHA */

.captcha-field {
    width: 360px;

    margin-top: 36px;

    padding: 18px 20px;

    border:
        1px solid #ccd2c6;

    border-radius: 9px;

    background:
        rgba(
            255,
            255,
            255,
            0.65
        );
}


.captcha-field label {
    display: block;

    margin-bottom: 9px;

    color: #18271d;

    font-size: 13px;

    font-weight: 600;
}


.captcha-field input {
    width: 100%;

    min-height: 48px;

    padding: 13px 15px;

    border: 1px solid #cdd7cf;

    border-radius: 4px;

    background: #fff;

    color: #18271d;
}


.captcha-field input:focus {
    border-color: #174c31;

    box-shadow: 0 0 0 3px rgba(23, 76, 49, 0.08);
}


.captcha-field p {
    margin:
        7px 0 0;

    color: #8c978f;

    font-size: 13px;
}


.captcha-field .error-message {
    color: #a63d3d;
}


.captcha-field .error input {
    border-color: #a63d3d;
}


.captcha-field .recaptcha-error {
    margin: 10px 0 0;

    color: #a63d3d;

    font-size: 13px;
}



/* PRIVACY */

.privacy-note {
    margin-top: 24px;

    color: #7c887f;

    font-size: 12px;
}



/* SUBMIT */

.form-submit-row {
    display: flex;

    justify-content: flex-end;

    margin-top: 24px;
}


.send-enquiry-button {
    min-width: 160px;

    padding: 15px 28px;

    border: none;

    border-radius: 40px;

    background: #174c31;

    color: white;

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s,
        transform 0.2s;
}


.send-enquiry-button:hover {
    background: #103b26;

    transform:
        translateY(-1px);
}



/* CAKE VALIDATION */

.enquiry-field .error-message {
    margin-top: 7px;

    color: #a63d3d;

    font-size: 12px;
}


.enquiry-field .error input,
.enquiry-field .error textarea {
    border-color: #a63d3d;
}



/* FLASH MESSAGE */

.message {
    margin-bottom: 26px;

    padding:
        14px 17px;

    border-radius: 8px;

    font-size: 14px;
}


.message.success {
    background: #e7efe6;

    color: #31543a;
}


.message.error {
    background: #f7e6e6;

    color: #873737;
}



/* TABLET */

@media (max-width: 1000px) {

    .contact-header {
        grid-template-columns:
            180px 1fr;

        padding:
            0 35px;
    }


    .contact-nav {
        justify-content: flex-end;

        gap: 28px;
    }


    .enquire-button {
        display: none;
    }


    .enquiry-layout {
        grid-template-columns:
            40% 60%;
    }


    .enquiry-brand-panel {
        padding:
            65px 40px;
    }


    .enquiry-form-section {
        padding:
            60px 50px;
    }

}



/* MOBILE */

@media (max-width: 760px) {

    .contact-header {
        height: auto;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        padding:
            22px 24px;
    }


    .contact-nav {
        width: 100%;

        justify-content: flex-start;

        flex-wrap: wrap;

        gap: 20px;
    }


    .enquiry-layout {
        display: block;
    }


    .enquiry-brand-panel {
        min-height: auto;

        padding:
            60px 28px 100px;
    }


    .enquiry-brand-panel h1 {
        font-size: 3rem;
    }


    .contact-email {
        margin-top: 40px;
    }


    .leaf-decoration {
        right: 25px;

        left: auto;

        bottom: -70px;
    }


    .enquiry-form-section {
        padding:
            55px 28px;
    }


    .form-heading h2 {
        font-size: 38px;
    }


    .captcha-field {
        width: 100%;
    }


    .form-submit-row {
        justify-content: stretch;
    }


    .send-enquiry-button {
        width: 100%;
    }

}

/* ==================================================
   V0.40.5 ENQUIRY SUCCESS PAGE
   ================================================== */

.success-body {
    margin: 0;
    min-height: 100vh;

    background: #f7f2e8;

    color: #183022;
}


.success-page {
    min-height: calc(100vh - 82px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 70px 30px 100px;
}


.success-card {
    width: 100%;

    max-width: 680px;

    padding: 72px 70px;

    border: 1px solid rgba(30, 70, 45, 0.08);

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.78);

    box-shadow:
        0 28px 80px
        rgba(40, 65, 45, 0.08);

    text-align: center;
}


/* CHECK ICON */

.success-icon {
    width: 112px;

    height: 112px;

    margin:
        0 auto 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e5ebe1;

    color: #174c31;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 54px;

    line-height: 1;
}


/* LABEL */

.success-eyebrow {
    margin-bottom: 14px;

    color: #768579;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.14em;
}


/* TITLE */

.success-card h1 {
    margin-bottom: 18px;

    color: #183022;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2.5rem,
            5vw,
            4rem
        );

    font-weight: 400;

    line-height: 1.1;
}


/* DESCRIPTION */

.success-description {
    max-width: 500px;

    margin:
        0 auto 28px;

    color: #738078;

    font-size: 15px;

    line-height: 1.65;
}


/* REFERENCE */

.success-reference {
    display: inline-block;

    margin-bottom: 38px;

    padding:
        8px 14px;

    border-radius: 30px;

    background: #eef1e9;

    color: #4d6052;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.05em;
}


/* BUTTONS */

.success-actions {
    display: flex;

    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;
}


.success-primary-button,
.success-secondary-button {
    min-width: 170px;

    padding:
        15px 28px;

    border-radius: 40px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        background 0.2s,
        color 0.2s,
        transform 0.2s;
}


.success-primary-button {
    border:
        1px solid #174c31;

    background: #174c31;

    color: white;
}


.success-primary-button:hover {
    background: #103b26;

    transform:
        translateY(-1px);
}


.success-secondary-button {
    border:
        1px solid #174c31;

    background: transparent;

    color: #174c31;
}


.success-secondary-button:hover {
    background: #eef1e9;

    transform:
        translateY(-1px);
}


/* SMALL NOTE */

.success-note {
    margin:
        32px 0 0;

    color: #8b958d;

    font-size: 12px;
}


/* MOBILE */

@media (max-width: 600px) {

    .success-page {
        padding:
            45px 18px 70px;
    }


    .success-card {
        padding:
            50px 25px;

        border-radius: 24px;
    }


    .success-icon {
        width: 90px;

        height: 90px;

        font-size: 44px;
    }


    .success-actions {
        flex-direction: column;
    }


    .success-primary-button,
    .success-secondary-button {
        width: 100%;
    }

}

/* ==================================================
   V0.50.6 ADMIN LOGIN
   ================================================== */

.admin-login-body {
    margin: 0;
    min-height: 100vh;
    background: #faf7f1;
    color: #18271d;
}


.admin-login-page {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 80px;
}


.admin-login-panel {
    width: min(1080px, 100%);
    min-height: 600px;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    overflow: hidden;

    border-radius: 30px;

    background: white;

    box-shadow:
        0 30px 90px rgba(40, 65, 45, 0.10);
}


/* LEFT */

.admin-login-brand {
    padding: 70px 60px;

    background: #174c31;

    color: white;
}


.admin-login-brand h1 {
    margin-bottom: 28px;

    color: #faf7f1;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(3rem, 5vw, 5rem);

    font-weight: 400;

    line-height: 1;
}


.admin-login-brand p {
    max-width: 360px;

    color:
        rgba(
            255,
            255,
            255,
            0.75
        );

    font-size: 15px;

    line-height: 1.7;
}


/* RIGHT */

.admin-login-form-panel {
    display: flex;

    align-items: center;

    justify-content: center;

    padding: 70px;
}


.admin-login-form-wrap {
    width: 100%;

    max-width: 430px;
}


.admin-login-form-wrap h2 {
    margin-bottom: 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 46px;

    font-weight: 400;
}


.admin-login-intro {
    margin-bottom: 35px;

    color: #758078;
}


.admin-login-field {
    margin-bottom: 22px;
}


.admin-login-field label {
    display: block;

    margin-bottom: 8px;

    color: #18271d;

    font-size: 13px;

    font-weight: 600;
}


.admin-login-field input {
    width: 100%;

    min-height: 52px;

    padding: 14px 16px;

    border:
        1px solid #ccd2c6;

    border-radius: 9px;

    background: #fbfcfa;

    color: #18271d;

    font: inherit;

    outline: none;
}


.admin-login-field input:focus {
    border-color: #174c31;

    box-shadow:
        0 0 0 3px
        rgba(23, 76, 49, 0.08);
}


.admin-login-button {
    width: 100%;

    margin-top: 10px;

    padding: 15px 28px;

    border: none;

    border-radius: 40px;

    background: #174c31;

    color: white;

    font: inherit;

    font-weight: 600;

    cursor: pointer;
}


.admin-login-button:hover {
    background: #103b26;
}


@media (max-width: 760px) {

    .admin-login-page {
        padding: 35px 18px 60px;
    }


    .admin-login-panel {
        grid-template-columns: 1fr;
    }


    .admin-login-brand {
        padding: 45px 30px;
    }


    .admin-login-form-panel {
        padding: 45px 30px;
    }

}

/* ==================================================
   V0.60 ADMIN DASHBOARD
   ================================================== */

.admin-dashboard-body {
    margin: 0;
    min-height: 100vh;

    background: #f6f3ec;

    color: #18271d;
}


/* HEADER */

.admin-header {
    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 64px;

    background: #174c31;

    color: white;
}


.admin-header-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    color: inherit;
}


.admin-header-brand span {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    letter-spacing: 0.04em;
}


.admin-header-brand small {
    margin-top: 4px;

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    font-size: 9px;

    letter-spacing: 0.14em;
}


.admin-header-nav {
    display: flex;

    align-items: center;

    gap: 28px;
}


.admin-nav-active {
    color:
        rgba(
            255,
            255,
            255,
            0.85
        );

    font-size: 14px;
}


.admin-logout-button {
    padding: 10px 20px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.45
        );

    border-radius: 40px;

    color: white;

    text-decoration: none;

    font-size: 13px;
}


.admin-logout-button:hover {
    background:
        rgba(
            255,
            255,
            255,
            0.1
        );
}


/* MAIN */

.admin-dashboard {
    width: min(1200px, calc(100% - 50px));

    margin: 0 auto;

    padding:
        70px 0 100px;
}


/* HEADING */

.admin-dashboard-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 40px;
}


.admin-dashboard-heading h1 {
    margin-bottom: 15px;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.6rem
        );
}


.admin-dashboard-heading > div > p:last-child {
    max-width: 620px;

    color: #748078;
}


.admin-stat-card {
    min-width: 170px;

    padding: 22px 26px;

    border:
        1px solid #dce2d8;

    border-radius: 18px;

    background: white;
}


.admin-stat-card span {
    display: block;

    margin-bottom: 4px;

    color: #7b877e;

    font-size: 12px;
}


.admin-stat-card strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 34px;

    font-weight: 400;
}


/* MESSAGE CARD */

.admin-messages-card {
    overflow: hidden;

    border:
        1px solid #dfe4da;

    border-radius: 24px;

    background: white;

    box-shadow:
        0 20px 60px
        rgba(40, 60, 43, 0.05);
}


.admin-table-heading {
    padding: 30px 34px;

    border-bottom:
        1px solid #e5e9e1;
}


.admin-table-heading h2 {
    margin-bottom: 5px;

    font-size: 28px;
}


.admin-table-heading p {
    margin: 0;

    color: #7b877e;

    font-size: 13px;
}


/* TABLE */

.admin-table-wrapper {
    overflow-x: auto;
}


.admin-messages-table {
    width: 100%;

    border-collapse: collapse;
}


.admin-messages-table th {
    padding:
        17px 24px;

    background: #f5f7f2;

    color: #66726a;

    text-align: left;

    font-size: 11px;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}


.admin-messages-table td {
    padding:
        22px 24px;

    border-top:
        1px solid #edf0eb;

    color: #59645d;

    font-size: 14px;
}


.admin-messages-table td strong {
    color: #18271d;
}


.admin-table-action {
    width: 90px;

    text-align: right;
}


.admin-view-button {
    display: inline-flex;

    padding:
        9px 17px;

    border:
        1px solid #174c31;

    border-radius: 30px;

    color: #174c31;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;
}


.admin-view-button:hover {
    background: #174c31;

    color: white;
}


/* PAGINATION */

.admin-pagination {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 24px;

    padding: 22px;

    border-top:
        1px solid #e5e9e1;

    color: #758078;

    font-size: 13px;
}


.admin-pagination a {
    color: #174c31;

    text-decoration: none;

    font-weight: 600;
}


/* EMPTY STATE */

.admin-empty-state {
    padding:
        90px 30px;

    text-align: center;
}


.admin-empty-icon {
    width: 70px;

    height: 70px;

    margin:
        0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e8eee5;

    color: #174c31;

    font-size: 28px;
}


.admin-empty-state h3 {
    margin-bottom: 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;

    font-weight: 400;
}


.admin-empty-state p {
    max-width: 430px;

    margin: 0 auto;

    color: #7a857d;
}


/* MOBILE */

@media (max-width: 760px) {

    .admin-header {
        padding:
            18px 24px;
    }


    .admin-dashboard {
        width:
            min(
                100% - 28px,
                1200px
            );

        padding:
            45px 0 70px;
    }


    .admin-dashboard-heading {
        align-items: stretch;

        flex-direction: column;
    }


    .admin-stat-card {
        width: 100%;
    }


    .admin-messages-table {
        min-width: 650px;
    }

}

/* ==================================================
   V0.60.2 ADMIN MESSAGE DETAIL
   ================================================== */

.admin-nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
}

.admin-nav-link:hover {
    color: white;
}


.admin-detail-back {
    margin-bottom: 32px;
}


.admin-back-link {
    color: #617067;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}


.admin-back-link:hover {
    color: #174c31;
}


.admin-detail-heading {
    margin-bottom: 38px;
}


.admin-detail-heading h1 {
    margin-bottom: 10px;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.8rem
        );
}


.admin-detail-heading > div > p:last-child {
    color: #78847c;
}


.admin-detail-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 330px;

    gap: 28px;

    align-items: start;
}


.admin-detail-card,
.admin-contact-card {
    border:
        1px solid #dfe4da;

    border-radius: 24px;

    background: white;

    box-shadow:
        0 20px 60px
        rgba(40, 60, 43, 0.05);
}


.admin-detail-card {
    overflow: hidden;
}


.admin-detail-card-heading {
    padding: 28px 32px;

    border-bottom:
        1px solid #e8ebe5;
}


.admin-detail-card-heading h2 {
    margin: 0;

    font-size: 26px;
}


.admin-message-content {
    min-height: 300px;

    padding: 38px 32px;

    color: #435047;

    font-size: 16px;

    line-height: 1.8;

    white-space: normal;
}


.admin-contact-card {
    padding: 30px;
}


.admin-detail-label {
    margin-bottom: 25px;

    color: #7d887f;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.08em;
}


.admin-contact-item {
    padding: 18px 0;

    border-bottom:
        1px solid #edf0eb;
}


.admin-contact-item span {
    display: block;

    margin-bottom: 5px;

    color: #849087;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.05em;
}


.admin-contact-item strong,
.admin-contact-item a {
    color: #203027;

    font-size: 14px;

    text-decoration: none;
}


.admin-contact-item a:hover {
    color: #174c31;

    text-decoration: underline;
}


.admin-reply-button {
    width: 100%;

    display: inline-flex;

    justify-content: center;

    margin-top: 28px;

    padding: 14px 20px;

    border-radius: 40px;

    background: #174c31;

    color: white;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;
}


.admin-reply-button:hover {
    background: #103b26;
}


@media (max-width: 850px) {

    .admin-detail-grid {
        grid-template-columns: 1fr;
    }

}
