/* --- HERO VENDA: imagem + texto --- */
.bottom-hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.bottom-visual {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 260px;
}
.bottom-visual img {
    max-width: 340px;
    width: 100%;
    border-radius: 18px;
    border: 1px solid #ccb79a;
    background: #fff;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}
.bottom-copy {
    text-align: left;
}
.bottom-copy h2 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 400;
    margin: 0 0 1.2rem;
    line-height: 1.13;
}
.bottom-copy .line-gold {
    color: var(--gold);
}
.bottom-copy ul {
    margin: 1.2rem 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.bottom-copy li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.18rem;
    color: #1d1812;
}
.bottom-copy li i {
    color: var(--gold);
    font-size: 1.3em;
}

/* --- 3 COLUNAS ABAIXO DO HERO --- */
.bottom-cta-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.2rem;
    align-items: start;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.bottom-cta-3col > * {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.checkout-card, .checkout-payment-accordion, .quick-access-card {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.checkout-card,
.checkout-payment-accordion,
.quick-access-card {
    background: #faf7f2;
    border: 1px solid #ccb79a;
    border-radius: 16px;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}
.checkout-card {
    grid-column: 1 / 3; /* Spanning across two columns */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: #faf7f2;
    border: 1px solid #ccb79a;
    border-radius: 16px;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}
.checkout-card button {
    margin-top: auto; /* Pushes the button to the bottom of the form */
}
.checkout-payment-accordion {
    gap: 1.1rem;
}
.quick-access-card {
    min-width: 220px;
    height: 100%;
    justify-content: flex-start;
}
/* --- NOVO CHECKOUT 3 COLUNAS --- */
.bottom-cta-3col {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.2rem;
    align-items: flex-start;
    margin-top: 0;
    padding: 1.1rem 0 1.9rem;
}

.bottom-visual {
    grid-column: 1 / 2;
}

/* --- CORREÇÃO CHECKOUT 2 COLUNAS --- */
/* --- CHECKOUT 3 COLUNAS --- */
.bottom-cta-3col {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 0.9fr;
    gap: 2.2rem;
    align-items: stretch;
    margin-top: 0;
    padding: 1.1rem 0 1.9rem;
}
.bottom-visual {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.bottom-visual img {
    max-width: 260px;
    border-radius: 18px;
    border: 1px solid #ccb79a;
    background: #fff;
    margin-bottom: 1.1rem;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}
.bottom-copy {
    text-align: left;
    margin-top: 0.5rem;
}
.bottom-copy h2 {
    font-size: clamp(1.3rem, 2.2vw, 2.1rem);
    margin: 0 0 0.7rem;
}
.bottom-copy ul {
    margin: 0.5rem 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.bottom-copy li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.04rem;
    color: #1d1812;
}
.bottom-copy li i {
    color: var(--gold);
    font-size: 1.2em;
}
.checkout-card-2col {
    grid-column: 2 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #faf7f2;
    border: 1px solid #ccb79a;
    border-radius: 16px;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    gap: 1.2rem;
    align-items: stretch;
}
.quick-access-card {
    grid-column: 3 / 4;
    background: #faf7f2;
    border: 1px solid #ccb79a;
    border-radius: 16px;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 220px;
    height: 100%;
}
    @media (max-width: 900px) {
        .bottom-cta-3col {
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }
        .checkout-card-2col {
            grid-template-columns: 1fr;
            padding: 1.2rem 0.7rem;
        }
        .quick-access-card {
            min-width: 0;
            width: 100%;
            justify-content: stretch;
        }
    }

.accordion-toggle {
    width: 100%;
    background: #f5f1eb;
    border: 1px solid #ccb79a;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: #a66a22;
    cursor: pointer;
    margin-bottom: 0.3rem;
    text-align: left;
    transition: background 0.2s;
}
.accordion-toggle[aria-expanded="true"] {
    background: #e8dac6;
}
.accordion-panel {
    background: rgba(245, 241, 235, 0.94);
    border-radius: 8px;
    border: 1px solid #e2d3b8;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.cc-form-title {
    margin: 0 0 0.45rem;
    color: #5d503f;
    font-size: 0.9rem;
    font-weight: 700;
}

#cc-panel {
    display: block;
}

#cc-panel {
    position: relative;
    overflow: hidden;
}

#cc-panel > * {
    max-height: 1000px;
    overflow: hidden;
    transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.32s ease, margin 0.32s ease, padding 0.32s ease, border-width 0.32s ease;
}

#cc-panel.is-processing > *:not(.cc-processing-state),
#cc-panel.is-status-success > *:not(.cc-processing-state),
#cc-panel.is-status-error > *:not(.cc-processing-state) {
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.cc-processing-state {
    min-height: 0;
    border: 1px solid #e2d3b8;
    border-radius: 12px;
    background: #fffaf2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    animation: cc-fade-in 0.3s ease forwards;
}

.cc-loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #ead8c0;
    border-top-color: var(--gold);
    border-radius: 999px;
    animation: cc-spin 0.85s linear infinite;
}

.cc-status-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #3f3427;
}

.cc-status-message {
    margin: 0;
    color: #4e4336;
    line-height: 1.45;
}

.cc-status-link {
    margin-top: 0.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(95deg, var(--gold-dark), var(--gold));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 0.62rem 0.9rem;
}

.cc-processing-state.is-error {
    border-color: #e3b5ac;
    background: #fff6f3;
}

@keyframes cc-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes cc-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#cc-panel > * + * {
    margin-top: 0.7rem;
}

#cc-panel .cc-field-label {
    display: block;
    color: #5d503f;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0;
}

#cc-panel .cc-field-label + input,
#cc-panel .cc-field-label + select {
    margin-top: 0.35rem;
}

#cc-panel input,
#cc-panel select {
    width: 100%;
}

#cc-panel .cc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "expiryLabel cvvLabel"
        "expiry cvv";
    column-gap: 0.7rem;
    row-gap: 0.35rem;
}

#cc-panel .cc-form-row input {
    margin-top: 0;
}

#cc-panel .cc-form-row label[for="cc-expiry"] {
    grid-area: expiryLabel;
}

#cc-panel .cc-form-row label[for="cc-cvv"] {
    grid-area: cvvLabel;
}

#cc-panel .cc-form-row #cc-expiry {
    grid-area: expiry;
}

#cc-panel .cc-form-row #cc-cvv {
    grid-area: cvv;
}

.cc-pay-button {
    width: 100%;
    background: linear-gradient(95deg, var(--gold-dark), var(--gold));
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 0.72rem 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.cc-pay-button:hover {
    filter: brightness(1.03);
}

.billing-address-title {
    margin: 0.9rem 0 0.2rem;
    padding-top: 0.75rem;
    color: #5d503f;
    font-size: 0.86rem;
    font-weight: 700;
}

.billing-address-title::before {
    content: '';
    display: block;
    width: 100%;
    margin: 0 auto 0.7rem;
    border-top: 1px solid #ccb79a;
}

.cc-total-charge {
    margin: 0;
    color: #3f3427;
    font-size: 0.96rem;
    font-weight: 700;
}

.pix-loading {
    color: #a66a22;
    font-weight: 700;
    text-align: center;
    padding: 1.2rem 0;
}
.pix-qrcode {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    min-height: 180px;
}

.pix-qrcode .pix-helper-text {
    margin: 0;
    color: #5d503f;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
}

.pix-qrcode .pix-helper-text + .pix-helper-text {
    margin-top: 0.7rem;
}
.quick-access-card {
    grid-column: 4 / 5;
    background: #faf7f2;
    border: 1px solid #ccb79a;
    border-radius: 16px;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 260px;
}
.quick-access-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.quick-access-title {
    margin: 0;
    color: #7f5420;
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    line-height: 1.25;
}

.quick-access-text {
    margin: 0;
    color: #5d503f;
    font-size: 1.12rem;
    line-height: 1.5;
}

.quick-access-divider {
    width: 100%;
    border: 0;
    border-top: 1px solid #d9c5ac;
    margin: 0.6rem 0 0;
}

.quick-support-title {
    margin-top: 0.2rem;
    font-weight: 400;
    text-align: left;
}

.quick-support-text {
    margin-top: -0.1rem;
    text-align: center;
}

.quick-support-email {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    color: #7f5420;
    font-weight: 700;
    text-decoration: none;
}

@font-face {
    font-family: 'ManropeLocal';
    src: url('/assets/fonts/Manrope-Light.ttf') format('truetype');
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'ManropeLocal';
    src: url('/assets/fonts/Manrope-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'ManropeLocal';
    src: url('/assets/fonts/Manrope-Medium.ttf') format('truetype');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'ManropeLocal';
    src: url('/assets/fonts/Manrope-SemiBold.ttf') format('truetype');
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'ManropeLocal';
    src: url('/assets/fonts/Manrope-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'ManropeLocal';
    src: url('/assets/fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'CormorantGaramondLocal';
    src: url('/assets/fonts/CormorantGaramond-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'CormorantGaramondLocal';
    src: url('/assets/fonts/CormorantGaramond-Italic.ttf') format('truetype');
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

:root {
    --font-serif: 'CormorantGaramondLocal', serif;
    --font-sans: 'ManropeLocal', sans-serif;
    --bg: #fff;
    --paper: #fbf8f3;
    --ink: #14120f;
    --muted: #605648;
    --gold: #a66a22;
    --gold-dark: #C88C50;
    --line: #ded4c6;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: #fff;
}

body.client-area {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.admin-area {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    background: #fff;
}

body.admin-area .topbar {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 230px;
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    overflow: hidden;
    background: transparent;
    padding: 15px;
    box-sizing: border-box;
}

body.admin-area .topbar .container {
    width: 100%;
    margin: 0;
}

body.client-area .panel-wrap {
    flex: 1;
}

body.admin-area .panel-wrap {
    grid-column: 2;
    grid-row: 1;
    flex: none;
    padding: 1rem 1.35rem 1rem 1.1rem;
    overflow: visible;
}

body.client-area .site-footer {
    margin-top: auto;
}

body.admin-area .site-footer {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    padding: 0 1rem 0 0;
}

body.admin-area .site-footer .footer-shell {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

body.admin-area .site-footer .logo {
    width: 78px;
    height: auto;
    justify-self: end;
    order: 3;
}

body.admin-area .site-footer p {
    justify-self: center;
    margin: 0;
    text-align: center;
    font-size: 0.85rem;
}

body.admin-area .site-footer .social-links {
    display: none;
}

body.admin-auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.admin-auth-page .site-footer {
    margin-top: auto;
}

body.client-area .download-ebook-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #b5762a, #d29a43);
    color: #fff8ef;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

body.client-area .download-ebook-cta:hover {
    transform: translateY(-2px);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    filter: brightness(1.03);
}

body.client-area .download-ebook-cta i {
    font-size: 1.1rem;
}

body.admin-area .panel h1,
body.admin-area .panel h2,
body.admin-area .panel h3,
body.admin-area .panel .stats-grid strong,
body.admin-area .panel th {
    color: #a66a22;
}

body.admin-area .panel h1,
body.admin-area .panel h2,
body.admin-area .panel h3 {
    margin-bottom: 0.9rem;
}

body.admin-area .panel i {
    color: #a66a22;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    margin: 0;
    font-weight: 400;
}

.container {
    width: min(1360px, 95vw);
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--bg);
    backdrop-filter: blur(8px);
    border-bottom: 0;
}

.nav-shell {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.admin-nav-shell {
    height: 100%;
    min-height: calc(100vh - 28px);
    width: 100%;
    max-width: none;
    position: relative;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0.55rem 1rem;
    background: #fff;
    border-right: 0;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    border-radius: 30px 30px 500px 30px;
}

.admin-nav-shell::after {
    display: none;
}

.admin-nav-shell .menu {
    flex: 1;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.36rem;
    padding-top: 0.35rem;
}

.admin-nav-shell .menu a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    padding: 0.82rem 0.75rem;
    border-radius: 15px;
    border: 0;
    color: #6b5d4f;
    background: transparent;
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.admin-nav-shell .menu a::before {
    content: none;
}

.admin-nav-shell .menu a i {
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
    color: currentColor;
    opacity: 0.95;
}

.admin-nav-shell .menu a:hover,
.admin-nav-shell .menu a.active {
    background: rgba(200, 140, 80, 0.04);
    color: var(--gold);
    box-shadow: inset -2px -2px 2px rgba(200, 200, 200, 0.2), inset 2px 2px 2px rgba(200, 200, 200, 0.1);
    transform: translateX(2px);
}

.admin-nav-shell .menu a.active::before {
    opacity: 1;
}

.admin-nav-shell .logo {
    align-self: flex-start;
    height: 48px;
    width: auto;
    margin: 0.05rem 0 0.25rem;
}

.admin-sidebar-logout {
    margin-top: auto;
    align-self: flex-start;
    border-radius: 16px;
    padding: 0.7rem 0.9rem;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-page-shell {
    width: 96%;
    display: grid;
    gap: 0.9rem;
    overflow: visible;
}

.admin-content-toolbar {
    background: #fff;
    border: 0;
    border-radius: 24px;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admin-page-head-card,
.admin-cms-card,
.admin-cms-list,
.admin-dashboard-panel,
.admin-content-panel,
.panel {
    background: #fff;
    border-radius: 24px;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-page-head-card {
    padding: 1.45rem 1.55rem;
}

.admin-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-left: auto;
}

.admin-toolbar-icon-button {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #e07f1f;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    flex: 0 0 46px;
}

.admin-toolbar-icon-button i {
    color: inherit;
    font-size: 1rem;
    margin-right: 0;
}

.admin-notification-button {
    position: relative;
}

.admin-notification-badge {
    position: absolute;
    top: 2px;
    right: 1px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #d57a1b;
    color: #fff;
    font-size: 0.72rem;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-toolbar-user {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0.55rem 0.35rem 0.35rem;
    border-radius: 999px;
    background: #fff;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-toolbar-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d9b18b, #b8782f);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.admin-toolbar-user-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.admin-toolbar-user-text strong {
    color: #261d13;
    font-size: 0.98rem;
    font-family: var(--font-sans);
    font-weight: 700;
}

.admin-toolbar-user-text span {
    color: #7d6d5d;
    font-size: 0.88rem;
}

.admin-toolbar-caret {
    color: #7c6c5d;
    font-size: 0.9rem;
    padding-right: 0.1rem;
}

.admin-cms-head-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.admin-cms-action-button {
    min-height: 48px;
    padding: 0.8rem 1.1rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    border: 0;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-cms-action-button:hover {
    transform: translateY(-1px);
}

.admin-cms-action-secondary {
    background: #fff;
    color: #6a5a49;
}

.admin-cms-action-primary {
    background: linear-gradient(135deg, #c88c50, #aa6e3c);
    color: #fff;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-cms-action-button i {
    font-size: 0.92rem;
}

.admin-page-head-card,
.admin-cms-card,
.admin-cms-list,
.admin-dashboard-panel,
.admin-content-panel,
.panel {
    background: #fff;
    border-radius: 24px;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-page-head-card {
    padding: 1.35rem 1.5rem;
    box-shadow: none;
}

.admin-page-head-card {
    padding: 1.35rem 1.5rem;
    box-shadow: none;
}

.admin-page-head-card h1 {
    font-size: clamp(1.9rem, 3vw, 2.55rem);
    line-height: 1.05;
}

.admin-page-head-card h1 i {
    display: none;
}

.admin-page-subtitle {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.admin-page-head-row {
    align-items: center;
    gap: 1.1rem;
}

.admin-cms-head-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.admin-cms-search {
    min-width: min(100%, 360px);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 0.95rem;
    border: none;
    border-radius: 10px;
    background: rgba(200, 140, 80, 0.04);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.6);
}

.admin-cms-search i {
    color: #9c8770;
    font-size: 1rem;
    margin-right: 0;
}

.admin-cms-search input {
    border: 0;
    outline: none;
    padding: 0;
    background: transparent;
    width: 100%;
    font-size: 0.98rem;
}

.admin-cms-search input:focus {
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-dashboard-panel,
.admin-content-panel {
    background: transparent;
    border: 0;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    padding: 0;
}

.panel.admin-content-panel {
    background: #fff;
    border: 0;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-dashboard-panel > * + *,
.admin-content-panel > * + * {
    margin-top: 1rem;
}

.logo {
    width: auto;
    height: 74px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 2.45rem;
}

.menu-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.menu-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -12px;
    width: calc(100% + 24px);
    height: 14px;
}

.menu-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.menu-dropdown-trigger::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    order: 2;
    margin-top: 3px;
}

.menu-dropdown-panel {
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    min-width: 250px;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 50;
}

.menu-dropdown-panel a {
    display: block;
    padding: 0.52rem 0.62rem;
    border-radius: 8px;
    font-size: 0.98rem;
    line-height: 1.25;
}

.menu-dropdown-panel a::after {
    display: none;
}

.menu-dropdown-panel a:hover,
.menu-dropdown-panel a.active {
    background: #f7f1e7;
    color: var(--gold-dark);
}

.menu-dropdown:hover .menu-dropdown-panel,
.menu-dropdown:focus-within .menu-dropdown-panel {
    display: flex;
}

.menu a {
    position: relative;
    text-decoration: none;
    color: #12110e;
    font-size: 1.08rem;
    line-height: 1;
}

.nav-cta {
    text-decoration: none;
    padding: 0.96rem 1.65rem;
    border-radius: 13px;
    font-size: 1.02rem;
    color: #fff;
    background: linear-gradient(95deg, var(--gold-dark), var(--gold));
}

.service-page-wrap {
    padding: 1.2rem 0 0.4rem;
}

.service-page-hero {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 430px);
    gap: 1.6rem;
    align-items: center;
    margin-top: 1rem;
}

.service-page-hero-copy {
    display: grid;
    gap: 0.55rem;
}

.service-page-hero h1 {
    font-size: clamp(2rem, 4.1vw, 3.2rem);
    color: #15100b;
    margin: 0;
}

.service-page-hero img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--line);
    object-fit: cover;
}

.service-page-content {
    margin-top: 1.4rem;
    background: #fff;
    border: 0;
    border-radius: 18px;
    padding: clamp(1.1rem, 2vw, 1.8rem);
}

.service-page-intro {
    margin: 0;
    color: #2e2923;
    line-height: 1.55;
    font-size: 0.95rem;
}

.article-content-page .service-page-hero {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.article-content-page .service-page-hero-media,
.article-content-page .service-page-hero-media picture,
.article-content-page .service-page-hero-media img {
    height: 100%;
}

.article-content-page .service-page-hero-media {
    min-height: 300px;
}

.article-content-page .service-page-hero-media img {
    object-fit: cover;
}

.service-page-body {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.2rem;
    align-items: stretch;
}

.service-page-main-column {
    display: grid;
    gap: 1.2rem;
    min-width: 0;
}

.service-page-body .service-page-content {
    margin-top: 0;
}

.service-page-sidebar {
    border-radius: 18px;
    background: rgba(200, 140, 80, 0.04);
    padding: 1.8rem;
    display: grid;
    gap: 1.25rem;
    align-content: start;
    height: 100%;
}

.service-page-sidebar h2 {
    margin: 0;
    font-size: 1.85rem;
    color: #221a13;
}

.service-page-sidebar-list {
    display: grid;
}

.service-page-sidebar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(34, 26, 19, 0.08);
    color: inherit;
    text-decoration: none;
}

.service-page-sidebar-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.service-page-sidebar-item-copy {
    display: block;
    min-width: 0;
}

.service-page-sidebar-item-copy strong {
    font-size: 1rem;
    color: #221a13;
    line-height: 1.3;
}

.service-page-sidebar-arrow,
.service-page-sidebar-all {
    color: #b87433;
}

.service-page-sidebar-arrow {
    font-size: 1.25rem;
    margin-left: auto;
    flex: 0 0 auto;
}

.service-page-sidebar-thumb {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    background: rgba(34, 26, 19, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: hidden;
}

.service-page-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page-sidebar-thumb i {
    color: rgba(34, 26, 19, 0.4);
}

.service-page-sidebar-all {
    font-weight: 700;
    text-decoration: none;
}

.service-page-sidebar-empty {
    margin: 0;
    color: #5c534b;
    line-height: 1.5;
}

.service-page-suggested {
    margin-top: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 1.1rem;
}

.service-page-suggested h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.4vw, 2.05rem);
    color: #1f1812;
}

.service-page-suggested-grid {
    margin-top: 0.85rem;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-page-suggested-card {
    border: 1px solid rgba(34, 26, 19, 0.08);
    border-radius: 12px;
    background: #fff;
}

.service-page-suggested-link {
    padding: 0.75rem;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0.7rem;
    text-decoration: none;
    color: inherit;
}

.service-page-suggested-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(34, 26, 19, 0.06);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-page-suggested-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page-suggested-thumb i {
    color: rgba(34, 26, 19, 0.35);
}

.service-page-suggested-copy {
    display: grid;
    gap: 0.26rem;
    align-content: start;
}

.service-page-suggested-copy strong {
    color: #1f1812;
    font-size: 1.03rem;
    line-height: 1.25;
}

.service-page-suggested-copy > span {
    color: #5d544c;
    line-height: 1.4;
    font-size: 0.9rem;
}

.service-page-suggested-cta {
    margin-top: 0.2rem;
    color: #b87433;
    font-size: 0.88rem;
    font-weight: 700;
}

.service-page-content h2,
.service-page-content h3,
.service-page-content h4 {
    color: #15100b;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-page-content p,
.service-page-content li {
    color: #2f2a23;
    line-height: 1.65;
}

.contact-form-shell {
    max-width: 860px;
}

.contact-form-feedback {
    margin: 0 0 0.9rem;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    font-size: 0.95rem;
}

.contact-form-feedback.is-success {
    background: rgba(45, 128, 77, 0.12);
    color: #1f6a39;
}

.contact-form-feedback.is-error {
    background: rgba(184, 57, 57, 0.12);
    color: #8f1f1f;
}

.contact-form-grid {
    display: grid;
    gap: 0.9rem;
}

.contact-form-grid label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.34rem;
    color: #2d251d;
}

.contact-form-grid input,
.contact-form-grid textarea {
    width: 100%;
    border: 1px solid rgba(47, 42, 35, 0.2);
    border-radius: 10px;
    padding: 0.8rem 0.9rem;
    font: inherit;
    color: #2f2a23;
    background: #fff;
}

.contact-marketing-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 0.1rem;
}

.contact-marketing-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 0.16rem;
}

.contact-marketing-checkbox span {
    line-height: 1.45;
    color: #2f2a23;
}

.admin-contacts-panel {
    padding: 0.95rem;
    display: grid;
    gap: 0.9rem;
}

.admin-contacts-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px auto;
    gap: 0.7rem;
}

.admin-contacts-search-row input,
.admin-contacts-search-row select {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    font: inherit;
}

.admin-contacts-grid {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 0.85rem;
    min-height: 540px;
}

.admin-contacts-list,
.admin-contacts-reader {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.admin-contacts-list {
    overflow-y: auto;
}

.admin-contacts-item {
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(47, 42, 35, 0.08);
    text-decoration: none;
    color: inherit;
}

.admin-contacts-item strong {
    color: #221a13;
}

.admin-contacts-item span,
.admin-contacts-item small,
.admin-contacts-item p {
    margin: 0;
    color: #4f463e;
}

.admin-contacts-item p {
    line-height: 1.35;
}

.admin-contacts-item.is-active {
    background: rgba(200, 140, 80, 0.08);
}

.admin-contacts-reader {
    padding: 1rem;
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.admin-contacts-reader-head {
    display: grid;
    gap: 0.22rem;
}

.admin-contacts-reader-head h2 {
    margin: 0;
}

.admin-contacts-reader-body {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 0.9rem;
    color: #2f2a23;
    line-height: 1.55;
    min-height: 200px;
}

.admin-contacts-status-actions {
    display: flex;
    gap: 0.55rem;
}

.admin-contacts-status-actions button {
    border: 1px solid rgba(47, 42, 35, 0.2);
    border-radius: 10px;
    background: #fff;
    padding: 0.52rem 0.8rem;
    color: #2f2a23;
}

.admin-contacts-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-contacts-empty {
    margin: 0;
    color: #554c44;
    padding: 0.85rem;
}

.landing-page {
    padding-top: 0.75rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 1rem 2.2rem;
    align-items: stretch;
    padding-top: 1rem;
}

.hero-copy {
    display: grid;
    justify-items: center;
}

.kicker {
    margin: 0 0 1.4rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
}

.hero-title {
    display: grid;
    justify-items: center;
    gap: 0.06em;
    line-height: 0.95;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.hero-title .line-dark,
.hero-title .line-gold {
    display: block;
    font-size: clamp(2.2rem, 7.8vw, 5.1rem);
    letter-spacing: 0.02em;
    text-align: center;
}

.hero-title .line-dark {
    color: #0f0d0a;
}

.hero-title .line-gold {
    color: var(--gold);
}

.hero-title .line-para {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    color: #231f19;
    font-size: clamp(1.1rem, 2.3vw, 2.55rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title .line-para::before,
.hero-title .line-para::after {
    content: '';
    width: 88px;
    border-top: 1px solid #caa66e;
}

.subtitle {
    max-width: 520px;
    font-size: clamp(1.02rem, 1.3vw, 1.38rem);
    line-height: 1.34;
    margin: 0;
    color: #1f1a14;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2.1rem;
    border-top: 1px solid var(--line);
}

.trust-grid article {
    text-align: center;
    padding: 1.3rem 1rem 0;
    border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
    border-right: 0;
}

.trust-grid i {
    color: var(--gold);
    font-size: 2.4rem;
}

.trust-grid p {
    margin: 0.85rem 0 0;
    color: #24201a;
    font-size: 0.95rem;
    line-height: 1.5;
}

.hero-visual {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 775px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-stage {
    position: absolute;
    inset: 8% 0 8% 0;
    border-radius: 32px;
}

.hero-visual::before {
    content: none;
}

.hero-visual img {
    position: relative;
    z-index: 2;
    width: 775px;
    max-width: 100%;
    object-fit: contain;
    object-position: center top;
    filter: none;
}

.benefits-board {
    margin-top: 1.8rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(251, 247, 240, 0.8);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.benefits-board article {
    text-align: center;
    padding: 1.9rem 1.1rem 1.5rem;
    border-right: 1px solid var(--line);
}

.benefits-board article:last-child {
    border-right: 0;
}

.benefits-board i {
    color: var(--gold);
    font-size: 2.7rem;
}

.benefits-board h3 {
    margin: 1.1rem 0 0.35rem;
    font-size: 1.15rem;
    line-height: 1.15;
    text-transform: uppercase;
}

.benefits-board p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.34;
    color: #25211a;
}

.about-grid {
    margin-top: 2.1rem;
    display: grid;
    gap: 2.2rem;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.section-label {
    margin: 0 0 0.7rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    font-weight: 700;
}

.about-copy h2 {
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    line-height: 1.04;
    margin-bottom: 1rem;
}

.about-copy h2 span {
    color: var(--gold);
}

.about-copy {
    min-height: 600px;
}

.about-copy p {
    font-size: 1.12rem;
    line-height: 1.9;
    color: #1d1812;
    margin: 0 0 1rem;
}

.about-photo {
    display: block;
    position: relative;
    min-height: 760px;
    border-radius: 26px;
    overflow: hidden;
    height: 600px;
    max-height: 600px;
    border: 1px solid #ccb496;
    background: linear-gradient(160deg, #b98a5f, #caa57e);
    position: relative;
    z-index: 3;
    max-width: 46%;
    padding-top: 3.2rem;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    width: 84%;
    position: absolute;
    right: -7%;
    top: 0;
    z-index: 1;
    pointer-events: none;
}

.quote-box {
    height: auto;
    min-height: 0;
    object-fit: contain;
    background: rgba(252, 249, 244, 0.92);
}

.quote-box p {
    margin: 0;
    text-align: center;
    padding: 1.4rem 1.2rem;
    font-size: clamp(1rem, 1.35vw, 1.22rem);
    line-height: 1.45;
}

.quote-box i {
    color: var(--gold);
    font-size: 1.8em;
}

.newsletter-box {
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(252, 249, 244, 0.92);
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1.4rem;
    align-items: center;
    padding: 1.4rem;
}

.newsletter-copy h3 {
    margin: 0.15rem 0 0.55rem;
    font-size: clamp(1.2rem, 1.9vw, 1.75rem);
}

.newsletter-copy p {
    margin: 0;
    line-height: 1.55;
}

.newsletter-form {
    display: grid;
    gap: 0.5rem;
}

.newsletter-form label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #5d503f;
}

.newsletter-form input {
    width: 100%;
}

.newsletter-form button {
    margin-top: 0.4rem;
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(95deg, var(--gold-dark), var(--gold));
    color: #fff;
    padding: 0.72rem 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    cursor: pointer;
}

.newsletter-form button:hover {
    filter: brightness(1.03);
}

.bottom-cta {
    margin-top: 0;
    display: grid;
    grid-template-columns: 0.88fr 1.08fr;
    grid-template-areas:
        'visual copy'
        'card card';
    gap: 1.5rem;
    align-items: center;
    padding: 1.1rem 0 1.9rem;
}

.bottom-visual {
    grid-area: visual;
    height: 550px;
    width: fit-content;
    max-width: 100%;
    justify-self: center;
    display: flex;
    align-items: end;
    justify-content: center;
    background: linear-gradient(155deg, #f7f2ea 0%, #e8dac6 100%);
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid #ccb496;
}

.bottom-visual img {
    height: 550px;
    width: auto;
    max-width: 100%;
    border-radius: 26px;
}

.bottom-copy {
    grid-area: copy;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.65rem;
}

.bottom-copy .section-label {
    margin: 0;
}

.bottom-copy h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.75rem);
    line-height: 1.3;
    margin: 0;
}

.bottom-copy h2 span {
    color: var(--gold);
}

.bottom-copy ul {
    list-style: none;
    padding: 0;
    margin: 0.35rem 0 0;
    display: grid;
    gap: 0.95rem;
}

.bottom-copy li {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    font-size: 1.12rem;
    line-height: 1.5;
}

.bottom-copy li i {
    color: var(--gold);
    font-size: 1.47rem;
}

#garanta.bottom-cta-hero {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

#garanta .bottom-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem;
    align-items: center;
}

#garanta .bottom-visual {
    grid-area: auto;
    grid-column: auto;
    height: auto;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    border: 0;
    padding: 0;
}

#garanta .bottom-visual img {
    display: block;
    width: min(100%, 340px);
    height: auto;
    max-width: 100%;
    margin: 0;
    border-radius: 18px;
    border: 1px solid #ccb79a;
}

#garanta .bottom-copy {
    grid-area: auto;
    grid-column: auto;
    height: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    text-align: left;
    margin: 0;
}

#garanta .bottom-copy h2 {
    font-size: clamp(2.2rem, 4.2vw, 4rem);
    line-height: 1.1;
    margin: 0;
}

#garanta .bottom-copy ul {
    margin: 0.75rem 0 0;
    gap: 0.9rem;
}

@media (max-width: 900px) {
    #garanta .bottom-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    #garanta .bottom-visual {
        order: 1;
        justify-self: center;
    }

    #garanta .bottom-copy {
        order: 2;
    }
}

#cta.bottom-cta-3col {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
    max-width: 1320px;
    margin: 0 auto 2.5rem;
    padding: 0;
}

#cta.bottom-cta-3col > * {
    min-height: 0;
    max-width: none;
    margin: 0;
    width: 100%;
    justify-content: flex-start;
}

#cta .checkout-main-card {
    border: 1px solid #ccb79a;
    border-radius: 16px;
    background: #faf7f2;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    padding: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

#cta .checkout-main-cta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

#cta .checkout-main-cta button {
    width: 100%;
    max-width: 520px;
    background: linear-gradient(95deg, var(--gold-dark), var(--gold));
    color: #fff;
    letter-spacing: 0.02em;
}

#cta .checkout-main-cta button.is-loading,
#cta .checkout-main-cta button:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

#cta .checkout-card,
#cta .checkout-payment-accordion,
#cta .quick-access-card {
    min-width: 0;
    grid-area: auto;
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    align-self: start;
}
.checkout-card {
    grid-area: card;
    width: 100%;
    border: 1px solid #ccb79a;
    border-radius: 16px;
    background: #faf7f2;
    padding: 1rem;
}

#cta .checkout-main-card .checkout-card,
#cta .checkout-main-card .checkout-payment-accordion {
    border: 0;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    background: transparent;
    padding: 0;
}

.checkout-tag {
    margin: 0;
    color: #7f5420;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
}

.checkout-payment-title {
    margin: 0 0 0.5rem;
    color: #7f5420;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.price-line {
    margin: 0.55rem 0 0;
    font-size: clamp(2rem, 2.4vw, 2.6rem);
    color: var(--gold);
    font-weight: 700;
    line-height: 1.02;
}

.price-line small {
    display: block;
    font-size: 0.95rem;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 400;
}

.installments {
    margin: 0.2rem 0 0.95rem;
    color: #221d17;
    font-size: 0.95rem;
}

.promotion-quantity-notice {
    margin: 0.35rem 0 0.5rem;
    color: #6b5a44;
    font-size: 0.88rem;
    line-height: 1.3;
}

.promotion-time-notice {
    margin: 0.35rem 0 0.5rem;
    color: #6b5a44;
    font-size: 0.88rem;
    line-height: 1.3;
}

.promotion-time-notice strong {
    color: #7f5420;
    font-weight: 700;
}

.checkout-box,
.promo-form,
.quick-access-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.pix-fallback-link {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid #c8aa82;
    border-radius: 10px;
    color: #8a571f;
    font-weight: 700;
    text-decoration: none;
    background: #fbf4ea;
}

.pix-fallback-link:hover {
    background: #f4e4cf;
}

.promo-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.promo-field label {
    color: #7f5420;
    font-size: 0.92rem;
    font-weight: 700;
}

.promo-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.promo-field-full {
    width: 100%;
}

.promo-field.is-hidden {
    display: none;
}

.admin-promotions-list {
    margin-top: 1rem;
}

.admin-promo-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.admin-promo-status-form {
    margin: 0;
}

.admin-promo-actions .with-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-promo-edit-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    text-decoration: none;
}

.admin-promo-edit-icon i {
    margin-right: 0;
}

.admin-social-links-card {
    margin-top: 0.6rem;
}

.admin-social-links-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.admin-social-link-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-social-link-icon {
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fbf8f3;
    color: #a66a22;
    font-size: 1.2rem;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-social-link-row input[type="text"] {
    border: 0;
    border-radius: 0;
    min-width: 0;
}

.admin-social-link-row button {
    border: 0;
    border-radius: 0;
    height: 100%;
    padding: 0.75rem 1.1rem;
    color: #fff;
    background: linear-gradient(95deg, var(--gold-dark), var(--gold));
}

.admin-social-link-row button i {
    color: inherit;
}

.admin-settings-card {
    margin-top: 0.6rem;
}

.admin-settings-form {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: none;
}

.admin-settings-form input,
.admin-settings-form select,
.admin-settings-form textarea {
    width: 100%;
}

.admin-settings-form label {
    color: #7f5420;
    font-size: 0.92rem;
    font-weight: 700;
}

.admin-settings-form textarea {
    font: inherit;
    border-radius: 10px;
    border: 1px solid #ccb79a;
    padding: 0.7rem 1rem;
    background: #fff;
    resize: vertical;
    min-height: 88px;
}

.admin-settings-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-settings-help {
    margin-top: -0.15rem;
    color: #6b5a44;
    font-size: 0.82rem;
}

.admin-settings-favicon-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    align-items: stretch;
}

.admin-settings-favicon-preview,
.admin-settings-og-image-preview,
.admin-settings-static-text {
    border-radius: 10px;
    background: #fff;
    padding: 0.7rem 1rem;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-settings-favicon-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
}

.admin-settings-browser-preview {
    width: 100%;
    max-width: 360px;
    border: 0;
    border-radius: 12px;
    background: #eceff3;
    overflow: hidden;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-settings-browser-toolbar {
    height: 14px;
    background: linear-gradient(180deg, #d7dde6, #c8d0da);
    border-bottom: 1px solid #c0c9d4;
}

.admin-settings-browser-tabs {
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    padding: 0.35rem 0.5rem 0.5rem;
}

.admin-settings-browser-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 120px;
    max-width: 210px;
    margin: 0;
    padding: 0.44rem 0.58rem;
    border: 0;
    border-radius: 9px 9px 7px 7px;
    background: #edf1f6;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-settings-browser-tab.is-active {
    background: #ffffff;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-settings-browser-tab.is-inactive {
    opacity: 0.9;
    filter: saturate(0.9);
}

.admin-settings-browser-tab.is-inactive .admin-settings-browser-title {
    color: #596272;
}

.admin-settings-browser-favicon-placeholder {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #d9dee7, #afb9c7);
    flex: 0 0 16px;
}

.admin-settings-browser-favicon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    flex: 0 0 16px;
}

.admin-settings-browser-title {
    color: #2f3640;
    font-size: 0.84rem;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-settings-browser-close {
    border: 0;
    background: transparent;
    color: #6a7482;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 999px;
    padding: 0;
    line-height: 1;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-settings-browser-close:hover {
    background: #dde3ec;
    color: #2f3640;
}

.admin-settings-browser-tab.is-active .admin-settings-browser-close:hover {
    background: #f0f3f8;
}

.admin-settings-og-image-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.admin-settings-og-image-preview img {
    max-width: 100%;
    max-height: 96px;
    object-fit: contain;
}

.admin-settings-static-text {
    margin: 0;
    color: #2f291f;
}

.admin-settings-product-fields,
.admin-settings-product-isbn {
    display: none;
}

.admin-settings-product-fields.is-visible,
.admin-settings-product-isbn.is-visible {
    display: block;
}

.checkout-box label {
    color: #5d503f;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: -0.35rem;
}

.checkout-box input.field-invalid {
    border-width: 2px;
    border-color: #ccb79a;
}

.accordion-panel input.field-invalid,
.accordion-panel select.field-invalid {
    border-width: 2px;
    border-color: #ccb79a;
}

.checkout-box .field-error-message {
    margin-top: -0.35rem;
    font-size: 0.78rem;
    color: #6b5a44;
    line-height: 1.2;
}

.accordion-panel .field-error-message {
    margin-top: -0.2rem;
    font-size: 0.78rem;
    color: #6b5a44;
    line-height: 1.2;
}

.checkout-box .checkout-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-top: 0.2rem;
    font-size: 0.76rem;
    line-height: 1.3;
    color: #6b5a44;
    font-weight: 400;
}

.checkout-box .checkout-consent input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin: 0.12rem 0 0;
    padding: 0;
    border-radius: 4px;
    accent-color: var(--gold);
}

input,
select,
button,
.big-button {
    font: inherit;
    border-radius: 10px;
    border: 1px solid #ccb79a;
    padding: 0.7rem 1rem;
    background: #fff;
    font-size: 1rem;
    transition: border 0.18s;
}
input:focus,
select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}
@media (max-width: 1100px) {
    .bottom-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: center;
    }
    .bottom-copy {
        text-align: center;
    }
    .bottom-cta-3col {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .bottom-visual img {
        max-width: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .bottom-cta-3col {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    #cta.bottom-cta-3col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #cta .checkout-main-card {
        order: 1;
    }

    #cta .quick-access-card {
        order: 2;
    }

    #cta .checkout-main-card {
        grid-template-columns: 1fr;
    }

    .bottom-visual,
    .checkout-card-2col,
    .quick-access-card {
        grid-column: auto;
        width: 100%;
        min-width: 0;
    }
    .checkout-card-2col {
        grid-template-columns: 1fr;
        padding: 1.2rem 0.7rem;
    }
    .quick-access-card {
        justify-content: stretch;
    }
    .bottom-visual img {
        max-width: 140px;
    }

    .promo-form-row {
        grid-template-columns: 1fr;
    }

    .admin-social-links-list {
        grid-template-columns: 1fr;
    }

    .admin-social-link-row {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .admin-social-link-row button {
        grid-column: 1 / -1;
    }

    .admin-settings-favicon-row {
        grid-template-columns: 1fr;
    }
}

button,
.big-button,
.nav-cta {
    border: 0;
    cursor: pointer;
    font-weight: 700;
}

.checkout-box button,
.checkout-main-cta button {
    background: linear-gradient(95deg, var(--gold-dark), var(--gold));
    color: #fff;
    letter-spacing: 0.02em;
}

button.ghost {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
}

.with-icon i {
    margin-right: 0.42rem;
    font-size: 1em;
    margin-top: 0.5rem;
}

.paypal-mark {
    margin: 0.8rem 0 0.7rem;
    text-align: center;
    color: #174ea6;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 700;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 1rem 0 1.4rem;
}

.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-shell p {
    margin: 0;
    color: #302a22;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 0.9rem;
}

.social-links a {
    color: #2a241d;
    font-size: 1.4rem;
    text-decoration: none;
}

.social-links i {
    font-size: 2.1rem;
}

.panel-wrap {
    padding: 1.2rem 0 1rem;
}

.admin-cms-head {
    align-items: flex-start;
    margin-bottom: 1rem;
}

.admin-page-head-card-services-list {
    padding: 1.25rem 1.5rem;
    background: #fff;
    box-shadow: none;
}

.admin-page-head-card-services-list .admin-cms-head {
    align-items: center;
    margin-bottom: 0;
}

.admin-page-head-card-services-list .admin-cms-desc {
    margin-top: 0.55rem;
    font-size: 0.98rem;
    max-width: 560px;
}

.admin-cms-head-actions.is-services-listing-actions {
    flex-wrap: nowrap;
    gap: 0.7rem;
}

.admin-cms-head-actions.is-services-listing-actions .admin-cms-search {
    min-width: 360px;
    width: 360px;
}

.admin-cms-head-actions.is-services-listing-actions .nav-cta {
    min-height: 2.4rem;
    border-radius: 10px;
    padding: 0.1rem 1rem;
    white-space: nowrap;
}

.admin-cms-lead {
    margin: 0.35rem 0 0;
    color: var(--gold-dark);
    font-weight: 700;
}

.admin-cms-desc {
    margin: 0.25rem 0 0;
    color: var(--muted);
}

.admin-cms-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: #f4ebdf;
    color: var(--gold-dark);
    font-weight: 700;
    border: 1px solid var(--line);
}

.admin-cms-card,
.admin-cms-list {
    margin-top: 1rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    padding: 1.35rem 1.5rem;
}

.admin-cms-list {
    box-shadow: none;
}

.admin-cms-form {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.admin-cms-form input,
.admin-cms-form textarea,
.admin-cms-form select {
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 0.75rem 0.95rem;
    background: #fff;
    font: inherit;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-cms-form textarea {
    resize: vertical;
    min-height: 120px;
}

.admin-cms-form label {
    color: var(--gold-dark);
    font-size: 0.92rem;
    font-weight: 700;
}

.admin-cms-form button {
    justify-self: start;
}

.admin-cms-form input[readonly],
.admin-service-main-card input[readonly] {
    background: rgba(200, 140, 80, 0.04);
    color: #6d6358;
    cursor: not-allowed;
}

.admin-cms-slug-path,
.admin-cms-slug-error {
    display: block;
    min-height: 1rem;
    font-size: 0.82rem;
}

.admin-cms-slug-path {
    margin-top: 0.2rem;
    color: #8b7d6b;
}

.admin-cms-slug-error {
    margin-top: 0.05rem;
    color: #b2462f;
    font-weight: 600;
}

.admin-field-counter,
.admin-field-error {
    display: block;
    min-height: 1rem;
    font-size: 0.8rem;
    line-height: 1.3;
}

.admin-field-counter {
    margin-top: 0.3rem;
    color: #8b7d6b;
    text-align: right;
    font-weight: 600;
}

.admin-field-counter.is-invalid {
    color: #b3261e;
}

.admin-field-error {
    margin-top: 0.2rem;
    color: #b3261e;
    font-weight: 700;
    display: none;
}

.admin-field-error.is-visible {
    display: block;
}

.admin-step-error-summary {
    display: none;
    margin: 0.25rem 0 0.6rem;
    color: #b3261e;
    font-size: 0.86rem;
    font-weight: 700;
}

.admin-step-error-summary.is-visible {
    display: block;
}

.admin-cms-form input.is-invalid,
.admin-cms-form textarea.is-invalid,
.admin-service-wizard input.is-invalid,
.admin-service-wizard textarea.is-invalid,
.tox.tox-tinymce.is-invalid {
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1), 0 0 0 1px #b3261e !important;
    background: #fff7f7 !important;
}

.admin-cms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.admin-cms-items {
    display: grid;
    gap: 1rem;
}

.admin-cms-item {
    border: 0;
    border-radius: 20px;
    background: #fff;
    padding: 1rem 1.1rem;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-cms-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.admin-cms-item-head p {
    margin: 0.15rem 0 0;
    color: var(--muted);
}

.admin-cms-status {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: #f1e6d7;
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-cms-item-actions {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.admin-cms-item-actions form {
    margin: 0;
}

.admin-cms-delete-btn {
    border: 0;
    background: #fff;
    color: #b3261e;
    border-radius: 14px;
    padding: 0.65rem 0.95rem;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-cms-delete-btn:hover {
    background: #fff2f1;
}

.admin-service-listing {
    display: grid;
    gap: 0.45rem;
}

.admin-service-listing-head {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(150px, 0.85fr) minmax(120px, 0.7fr) minmax(130px, 0.75fr) minmax(110px, 0.55fr);
    gap: 1rem;
    padding: 0 0.9rem 0.2rem 0.9rem;
    color: #b39d89;
    font-size: 0.77rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 700;
}

.admin-service-listing-body {
    display: grid;
    gap: 0.45rem;
}

.admin-service-listing-row {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(150px, 0.85fr) minmax(120px, 0.7fr) minmax(130px, 0.75fr) minmax(110px, 0.55fr);
    gap: 1rem;
    align-items: center;
    padding: 1rem 0.95rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #fbf8f4);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: grab;
}

.admin-service-listing-row:hover {
    transform: translateY(-1px);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-service-listing-row.is-dragging {
    opacity: 0.72;
    cursor: grabbing;
}

.admin-service-listing-row.is-drag-over {
    outline: 2px dashed rgba(204, 132, 59, 0.45);
    outline-offset: 2px;
}

.admin-service-listing-service {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.admin-service-drag-handle {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a68f76;
    background: #f7f2ec;
    flex: 0 0 28px;
}

.admin-service-drag-handle i {
    font-size: 0.86rem;
}

.admin-service-listing-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    background: linear-gradient(180deg, #fff4ea, #f8efe4);
    color: #cb8a4f;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-service-listing-icon i {
    font-size: 1rem;
}

.admin-service-listing-icon img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    object-position: center;
    display: block;
}

.admin-service-listing-copy {
    min-width: 0;
}

.admin-service-listing-copy strong {
    display: block;
    color: #2f291f;
    font-size: 1rem;
    line-height: 1.2;
}

.admin-service-listing-copy p {
    margin: 0.2rem 0 0;
    color: #7b6d61;
    font-size: 0.92rem;
    line-height: 1.45;
}

.admin-service-listing-cell {
    color: #6d6258;
    font-size: 0.94rem;
}

.admin-service-listing-slug {
    color: #7c7065;
    font-variant-ligatures: none;
}

.admin-service-listing-date {
    line-height: 1.35;
}

.admin-service-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    background: #f2ece6;
    color: #7b6959;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.admin-service-status-published {
    background: #eef6ee;
    color: #4f7d52;
}

.admin-service-status-scheduled {
    background: #f4ebdf;
    color: #c07c2a;
}

.admin-service-status-draft,
.admin-service-status-0 {
    background: #f3f0ec;
    color: #817468;
}

.admin-service-listing-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
}

.admin-service-action {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-service-action:hover {
    transform: translateY(-1px);
}

.admin-service-action i {
    font-size: 0.92rem;
}

.admin-service-action-edit {
    background: #fff;
    color: #cc843b;
    border: 1px solid rgba(200, 140, 80, 0.45);
}

.admin-service-action-delete {
    background: #fff;
    color: #b7ada3;
    border: 1px solid rgba(214, 200, 185, 0.55);
    cursor: pointer;
}

@media (max-width: 1080px) {
    .admin-service-listing-head,
    .admin-service-listing-row {
        grid-template-columns: minmax(0, 1.5fr) minmax(120px, 0.8fr) minmax(110px, 0.65fr) minmax(110px, 0.55fr);
    }

    .admin-service-listing-head > :nth-child(5),
    .admin-service-listing-row > :nth-child(5) {
        justify-self: end;
    }

    .admin-service-listing-head > :nth-child(2),
    .admin-service-listing-row > :nth-child(2) {
        display: none;
    }
}

@media (max-width: 760px) {
    .admin-service-listing-head {
        display: none;
    }

    .admin-service-listing-row {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .admin-service-listing-actions {
        justify-content: flex-start;
    }

    .admin-service-listing-cell,
    .admin-service-listing-date {
        font-size: 0.9rem;
    }

    .admin-service-listing-service {
        align-items: flex-start;
    }
}

.admin-auth-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 3rem;
}

.admin-auth-card {
    width: min(520px, 100%);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    padding: 2.2rem 2rem;
    text-align: center;
}

.admin-auth-logo {
    width: auto;
    height: 84px;
    margin-bottom: 0.8rem;
}

.admin-auth-card h1 {
    color: var(--gold-dark);
    margin-bottom: 0.65rem;
}

.admin-auth-card p {
    margin: 0 0 1.4rem;
    color: var(--muted);
}

.admin-auth-form {
    display: grid;
    gap: 0.7rem;
    text-align: left;
}

.admin-auth-form label {
    font-size: 0.95rem;
    color: var(--gold-dark);
    font-weight: 700;
}

.admin-auth-form input {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: #fff;
}

.admin-auth-form input:focus {
    outline: 2px solid rgba(166, 106, 34, 0.26);
    border-color: var(--gold);
}

.admin-auth-form button {
    margin-top: 0.35rem;
    border: 0;
    border-radius: 12px;
    padding: 0.95rem 1.1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(95deg, var(--gold-dark), var(--gold));
    cursor: pointer;
}

.admin-auth-form button i {
    margin-right: 0.42rem;
}

.panel {
    padding: 1.2rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.stats-grid article {
    background: #f9f4ed;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8rem;
}

.stats-grid article span {
    display: block;
    margin-top: 0.4rem;
    font-size: 1.3rem;
    color: var(--gold);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

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

.admin-leads-card {
    margin-top: 1.2rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f9f4ed;
}

.admin-leads-heading span {
    color: #5d503f;
    font-weight: 700;
}

.admin-leads-filters {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0.8rem 0 0.4rem;
}

.admin-leads-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border: 1px solid #ccb79a;
    border-radius: 10px;
    background: #fff;
    color: #5d503f;
    text-decoration: none;
}

.admin-leads-pagination {
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.admin-leads-page-link {
    text-decoration: none;
    color: var(--gold-dark);
    font-weight: 700;
}

.admin-leads-page-link.is-disabled {
    pointer-events: none;
    color: #9a8e7e;
}

.admin-product-upload-card {
    margin-top: 1.2rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f9f4ed;
}

.admin-product-upload-card label {
    color: #7f5420;
    font-weight: 700;
    font-size: 0.95rem;
}

.admin-product-inline-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f9f4ed;
}

.admin-product-inline-form {
    display: grid;
    gap: 0.45rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--line);
}

.admin-product-inline-form:last-child {
    border-bottom: 0;
}

.admin-product-inline-form label {
    color: #7f5420;
    font-weight: 700;
}

.admin-product-inline-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
    width: 100%;
}

.admin-product-inline-row button {
    white-space: nowrap;
}

.admin-product-upload-card input[type="file"] {
    border: 1px solid #ccb79a;
    border-radius: 10px;
    background: #fff;
    padding: 0.7rem;
}

.admin-product-image-preview {
    margin-top: 1rem;
}

.admin-product-image-preview p {
    margin: 0 0 0.5rem;
    color: #5d503f;
    font-weight: 700;
    text-align: center;
}

.admin-product-preview-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-product-image-preview img {
    width: min(260px, 100%);
    border: 1px solid #ccb79a;
    border-radius: 12px;
    display: block;
}

.admin-product-download-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
}

.admin-product-download-btn i {
    color: #fff;
}

.admin-sales-chart-card {
    margin-top: 1.1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f9f4ed;
}

.admin-sales-chart-head span {
    color: #7f5420;
    font-size: 0.95rem;
    font-weight: 700;
}

.admin-sales-chart {
    margin-top: 0.8rem;
    border: 1px solid #dcc4a3;
    border-radius: 12px;
    background: #efe2cf;
    padding: 0.75rem;
}

.admin-sales-plot {
    min-height: 210px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.8rem;
    align-items: end;
    padding: 0.4rem 0.35rem 0;
    border-radius: 10px;
    border-bottom: 1px solid #ceb18c;
    background: linear-gradient(
        to top,
        rgba(127, 84, 32, 0.14) 0,
        rgba(127, 84, 32, 0.14) 1px,
        transparent 1px,
        transparent 20%
    );
    background-size: 100% 20%;
}

.admin-sales-bar-item {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    justify-items: center;
    gap: 0.35rem;
}

.admin-sales-bar-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #7f5420;
}

.admin-sales-bar-fill {
    width: min(56px, 78%);
    align-self: end;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, #c38a42, #a66a22);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-sales-bar-label {
    font-size: 0.84rem;
    color: #5d503f;
    font-weight: 700;
}

.admin-period-filter {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccb79a;
    border-radius: 999px;
    overflow: hidden;
    background: #f8f1e6;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-period-filter a {
    padding: 0.5rem 0.95rem;
    text-decoration: none;
    color: #7f5420;
    font-size: 0.92rem;
    font-weight: 700;
    border-right: 1px solid #ccb79a;
    transition: background 0.2s ease, color 0.2s ease;
}

.admin-period-filter a:last-child {
    border-right: 0;
}

.admin-period-filter a:hover {
    background: #f2e5d4;
}

.admin-period-filter a.is-active {
    background: linear-gradient(95deg, var(--gold-dark), var(--gold));
    color: #fff;
}

.admin-leads-sort-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.admin-leads-sort-link:hover {
    text-decoration: underline;
}

@media (max-width: 1100px) {
    body.admin-area .row-between {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-cms-head-actions.is-services-listing-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .admin-cms-head-actions.is-services-listing-actions .admin-cms-search {
        width: 100%;
        min-width: 0;
        flex: 1 1 100%;
    }

    .admin-period-filter {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-radius: 14px;
    }

    .admin-period-filter a {
        border-right: 1px solid #ccb79a;
        border-bottom: 1px solid #ccb79a;
        text-align: center;
    }

    .admin-period-filter a:nth-child(3n) {
        border-right: 0;
    }

    .admin-period-filter a:nth-last-child(-n + 3) {
        border-bottom: 0;
    }

    .admin-sales-chart {
        overflow-x: auto;
    }

    .admin-sales-plot {
        min-width: 560px;
    }

    .admin-product-inline-form {
        align-items: stretch;
    }

    .admin-product-inline-row {
        grid-template-columns: 1fr;
    }

    .admin-product-inline-row button {
        justify-content: center;
    }

    .admin-leads-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.flash {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 60;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: #fff;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.flash.is-fading {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.flash-success {
    background: #2b8a3e;
}

.flash-error {
    background: #b94835;
}

@media (max-width: 1280px) {
    .kicker {
        font-size: 1rem;
    }

    .subtitle {
        font-size: 1.06rem;
    }

    .trust-grid p {
        font-size: 0.98rem;
    }

    .benefits-board h3 {
        font-size: 1.2rem;
    }

    .benefits-board p {
        font-size: 0.95rem;
    }

    .about-copy p {
        font-size: 1rem;
    }

    .stats-row span {
        font-size: 0.94rem;
    }

    .bottom-copy li {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .menu {
        display: none;
    }

    .service-page-hero {
        grid-template-columns: 1fr;
    }

    .about-copy {
        min-height: 0;
    }

    .hero-grid,
    .about-grid,
    .bottom-cta {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 460px;
    }

    .hero-visual img {
        width: min(360px, 72%);
    }

    .bottom-visual {
        width: 100%;
        justify-self: stretch;
    }

    .benefits-board {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-board article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .benefits-board article:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .stats-row,
    .trust-grid,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-row article,
    .trust-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stats-row article:nth-last-child(-n+2),
    .trust-grid article:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .article-content-page .service-page-hero {
        grid-template-columns: 1fr;
    }

    .service-page-body {
        grid-template-columns: 1fr;
    }

    .service-page-sidebar {
        min-height: 140px;
    }

    .service-page-suggested-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .admin-contacts-search-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    html,
    body {
        overflow-x: hidden;
    }

    .container {
        width: min(1320px, 94vw);
    }

    .logo {
        height: 44px;
    }

    .nav-cta {
        font-size: 0.85rem;
        padding: 0.65rem 0.8rem;
    }

    .hero-grid {
        gap: 0.8rem;
    }

    .hero-copy {
        width: 100%;
        justify-items: stretch;
    }

    .kicker,
    .hero-title,
    .subtitle {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        gap: 0.12em;
    }

    .hero-title .line-dark,
    .hero-title .line-gold {
        font-size: clamp(1.95rem, 12vw, 2.8rem);
        line-height: 1.02;
    }

    .hero-title .line-para {
        font-size: clamp(0.95rem, 6vw, 1.4rem);
        gap: 0.55rem;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }

    .hero-title .line-para::before {
        content: '';
        width: 46px;
        border-top: 1px solid #caa66e;
    }

    .hero-title .line-para::after {
        width: 46px;
    }

    .hero-visual {
        width: 100%;
        min-height: 390px;
        align-items: center;
    }

    .hero-visual img {
        width: min(320px, 84vw);
    }

    .about-copy p {
        text-align: justify;
    }

    .stats-row,
    .trust-grid,
    .benefits-board,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-row article,
    .trust-grid article,
    .benefits-board article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-grid article:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .benefits-board article:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .stats-row article:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .benefits-board article:last-child,
    .stats-row article:last-child,
    .trust-grid article:last-child {
        border-bottom: 0;
    }

    .footer-shell {
        flex-direction: column;
        text-align: center;
    }

    .service-page-suggested-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================================================
   FENIMAN CONSULTORIA - CONSULTING LANDING PAGE STYLES
   =================================================== */

/* --- CONSULTING HERO OVERRIDES --- */
.consulting-page .hero-grid {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 1.6rem;
    padding-top: 1.7rem;
    padding-bottom: 1.4rem;
    min-height: 860px;
    position: relative;
}
.consulting-page .hero-copy {
    justify-items: start;
    align-content: start;
    gap: 0;
    align-self: stretch;
    max-width: none;
    position: relative;
    z-index: 3;
    border-radius: 22px;
    padding: clamp(1rem, 2vw, 1.8rem);
}
.consulting-page .kicker {
    text-align: left;
    margin-bottom: 1.35rem;
    letter-spacing: 0.08em;
}
.hero-headline {
    font-size: clamp(2.45rem, 4.1vw, 4rem);
    line-height: 1.08;
    font-weight: 300;
    margin: 0 0 1.1rem;
    color: var(--ink);
}
.hero-headline-gold {
    color: var(--gold);
}
.consulting-subtitle {
    text-align: left !important;
    max-width: 510px;
    margin-bottom: 1rem;
    font-size: clamp(0.95rem, 1.04vw, 1.08rem);
    line-height: 1.48;
    color: var(--muted);
}
.hero-signature {
    margin: 0 0 1.25rem;
    font-size: 1.06rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
}
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1.05rem;
    flex-wrap: wrap;
}
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.98rem 1.72rem;
    border-radius: 13px;
    background: linear-gradient(95deg, var(--gold-dark), var(--gold));
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    font-family: inherit;
    transition: filter 0.2s, transform 0.2s;
    border: 0;
    cursor: pointer;
}
.btn-cta-primary:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}
.btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.98rem 1.72rem;
    border-radius: 13px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.btn-cta-ghost:hover {
    border-color: var(--gold);
    background: rgba(166, 106, 34, 0.05);
}
.consulting-page .hero-visual {
    min-height: 0;
    width: min(965px, 78vw);
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: absolute;
    right: -10%;
    bottom: 142px;
    z-index: 1;
    pointer-events: none;
}
.consulting-page .hero-visual img {
    width: 100%;
    max-width: none;
    height: auto;
    position: relative;
    z-index: 2;
    filter: none;
    margin-right: 0;
    border-radius: 18px;
}

.hero-right-points {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    z-index: 2;
    border-top: 0;
    margin-top: 0.7rem;
}

.hero-right-point {
    --point-font-size: 0.84rem;
    --point-line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: 0.58rem;
    padding: 0.95rem 0.8rem 0.45rem;
    color: #7d6f5e;
    font-size: var(--point-font-size);
    line-height: var(--point-line-height);
    border-right: 1px solid rgba(141, 87, 25, 0.2);
}

.hero-right-point:last-child {
    border-right: 0;
}

.hero-right-point i {
    color: #b17a3a;
    font-size: calc(2 * var(--point-font-size) * var(--point-line-height));
    line-height: 1;
    margin-top: 0;
    width: calc(2 * var(--point-font-size) * var(--point-line-height));
    height: calc(2 * var(--point-font-size) * var(--point-line-height));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-right-point span {
    display: block;
}

/* --- SERVICES SECTION --- */
.services-section {
    margin-top: 2rem;
    margin-bottom: 0.4rem;
    padding-top: 1.2rem;
    border-top: 0;
}
.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 2.6rem;
    align-items: end;
    margin-bottom: 1.15rem;
}
.services-title {
    font-size: clamp(2rem, 2.95vw, 3rem);
    line-height: 1.08;
    font-weight: 400;
    margin: 0;
    color: var(--ink);
    max-width: 450px;
}
.services-sub {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
    color: var(--muted);
    max-width: 360px;
    align-self: end;
    justify-self: end;
    text-align: right;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}
.service-card {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 460px;
    transition: box-shadow 0.22s, transform 0.22s;
}
.service-card:hover {
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    transform: translateY(-2px);
}
.service-card-img {
    height: auto;
    background: #fff;
    border-bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.service-card-img img {
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
    display: block;
}
.service-card-img > i {
    font-size: 5rem;
    color: rgba(166, 106, 34, 0.4);
}
.service-card-body {
    padding: 1.05rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
    background: #f4f2ee;
}
.service-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #fff;
    font-size: 0.72rem;
}
.service-card-body h3 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.08;
    color: var(--ink);
}
.service-card-body p {
    margin: 0;
    font-size: 0.79rem;
    line-height: 1.62;
    color: var(--muted);
    flex: 1;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.1rem;
}
.service-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.anchor-offset {
    display: block;
    position: relative;
    top: -118px;
    visibility: hidden;
}

/* --- NEWSLETTER SECTION --- */
.consulting-page .newsletter-box {
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    border-radius: 18px;
    background: rgba(250, 247, 242, 0.92);
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1.9rem;
    align-items: center;
    padding: 1.7rem 1.65rem;
}
.consulting-page .newsletter-copy h3 {
    margin: 0.15rem 0 0.6rem;
    font-size: clamp(2rem, 3.1vw, 3.15rem);
    line-height: 1.06;
    color: var(--ink);
}
.consulting-page .newsletter-copy p {
    margin: 0;
    line-height: 1.6;
    color: var(--ink);
}
.consulting-page .newsletter-form {
    display: grid;
    gap: 0.55rem;
}
.consulting-page .newsletter-form label {
    font-size: 0.94rem;
    font-weight: 700;
    color: #5d503f;
}
.consulting-page .newsletter-form input {
    width: 100%;
    border: 1px solid #d5c9b8;
    border-radius: 10px;
    background: #f8f5ef;
    padding: 0.72rem 0.86rem;
    color: #2d241a;
}
.consulting-page .newsletter-form button {
    margin-top: 0.7rem;
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(95deg, var(--gold-dark), var(--gold));
    color: #fff;
    padding: 0.82rem 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    cursor: pointer;
}
.consulting-page .newsletter-form button:hover {
    filter: brightness(1.03);
}

/* --- DIFFERENTIAL SECTION --- */
.differential-section {
    margin-top: 3.4rem;
    margin-bottom: 0;
    display: block;
    position: relative;
    min-height: clamp(520px, 42vw, 760px);
}
.diff-copy {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    align-items: flex-start;
    position: relative;
    z-index: 3;
    max-width: min(46%, 620px);
    padding-top: 2.4rem;
}
.diff-title {
    font-size: clamp(2.3rem, 3.6vw, 4.2rem);
    line-height: 1.1;
    font-weight: 400;
    margin: 0;
    color: var(--ink);
}
.diff-title-gold {
    color: var(--gold);
}
.diff-text {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.62;
    color: var(--muted);
    max-width: 460px;
}
.diff-visual {
    border-radius: 26px;
    overflow: visible;
    background: transparent;
    border: 0;
    width: min(100%, 1683px);
    aspect-ratio: 1683 / 934;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
}
.diff-visual img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    display: block;
}

.consulting-page .site-footer {
    margin-top: 0;
    padding-top: 0.35rem;
    padding-bottom: 0.45rem;
}

.consulting-page .footer-shell {
    min-height: 58px;
}

.consulting-page .footer-shell .logo {
    height: 50px;
}

.consulting-page .footer-shell p {
    font-size: 0.95rem;
}

.consulting-page .social-links i {
    font-size: 1.45rem;
}

/* --- QUOTE BANNER --- */
.quote-banner {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(252, 249, 244, 0.92);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 2.5rem 3rem;
}
.quote-banner-text p {
    margin: 0;
    font-size: clamp(1.4rem, 2.3vw, 1.95rem);
    line-height: 1.35;
    font-weight: 400;
    color: var(--ink);
}
.quote-banner-cta {
    white-space: nowrap;
    flex-shrink: 0;
}

/* --- CONSULTING RESPONSIVE --- */
@media (max-width: 1024px) {
    .consulting-page .hero-grid { grid-template-columns: 1fr; align-items: start; gap: 1rem; padding-top: 1.5rem; min-height: auto; position: static; }
    .consulting-page .hero-copy { order: 1; }
    .consulting-page .hero-copy { padding-bottom: 0; max-width: 100%; z-index: auto; }
    .consulting-page .hero-visual { order: 2; min-height: 360px; align-items: flex-start; position: relative; right: auto; bottom: auto; width: 100%; pointer-events: auto; }
    .consulting-page .hero-visual img { width: 100%; margin-right: 0; }
    .hero-right-points { position: static; order: 3; width: 100%; margin-top: 0.45rem; border-top: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.45rem 0.65rem; }
    .hero-right-point { border-right: 0; padding: 0.45rem 0; font-size: 0.78rem; }
    .hero-signature { font-size: 1.3rem; margin-bottom: 1.2rem; }
    .service-card-body h3 { font-size: 2.2rem; }
    .anchor-offset { top: -98px; }
    .services-header { grid-template-columns: 1fr; gap: 0.75rem; }
    .services-sub { text-align: left; justify-self: start; max-width: 100%; }
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .consulting-page .newsletter-box { grid-template-columns: 1fr; gap: 1.1rem; }
    .differential-section { display: grid; grid-template-columns: 1fr; gap: 2rem; min-height: 0; }
    .diff-copy { max-width: 100%; padding-top: 0; }
    .diff-visual { position: relative; right: auto; top: auto; width: 100%; aspect-ratio: auto; order: -1; pointer-events: auto; }
    .diff-visual img { min-height: 280px; object-fit: cover; }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .quote-banner { flex-direction: column; align-items: flex-start; padding: 1.8rem 1.5rem; gap: 1.5rem; }
}
@media (max-width: 620px) {
    .hero-headline { font-size: clamp(2.2rem, 10vw, 3rem); }
    .consulting-subtitle { max-width: 100%; }
    .services-section { margin-top: 3rem; }
    .differential-section { margin-top: 2.5rem; }
    .quote-banner { margin-top: 2.5rem; margin-bottom: 2.5rem; }
}

/* --- SERVICE CMS WIZARD --- */
.admin-service-editor-shell {
    display: grid;
    gap: 1rem;
}

.admin-service-wizard {
    display: grid;
    gap: 1rem;
}

.admin-service-wizard-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 0.2rem 0;
}

.admin-service-wizard-head h2 {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1.05;
    margin-top: 0.15rem;
}

.admin-service-stepper-shell {
    padding: 0.35rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 243, 236, 0.95));
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-service-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border-radius: 20px;
}

.admin-service-stepper button {
    border: 0;
    border-radius: 0;
    padding: 1rem 1rem;
    background: linear-gradient(180deg, #ffffff, #f8f4ee);
    color: #66584d;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 78px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.admin-service-stepper button + button {
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0e5d8;
    color: #8f5f2f;
    font-weight: 700;
    flex: 0 0 32px;
}

.admin-step-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.admin-step-copy strong {
    font-family: var(--font-sans);
    font-size: 0.96rem;
    font-weight: 700;
}

.admin-step-copy small {
    color: #9b8775;
    font-size: 0.78rem;
    line-height: 1.2;
}

.admin-service-stepper button.is-active {
    color: #3a332d;
    background: linear-gradient(180deg, #ffffff, #fffaf5);
    transform: translateY(-1px);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-service-stepper button.is-active .admin-step-number {
    background: linear-gradient(135deg, #d79b5f, #b8782f);
    color: #fff;
}

.admin-service-panels {
    display: grid;
    gap: 1rem;
}

.admin-service-step {
    display: none;
}

.admin-service-step.is-active {
    display: block;
    animation: admin-step-fade 0.22s ease;
}

.admin-service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.8fr);
    gap: 1rem;
    align-items: start;
}

.admin-service-main-card,
.admin-service-side,
.admin-side-card,
.admin-upload-card {
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff, #fbf8f3);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-service-main-card {
    padding: 1.15rem;
    display: grid;
    gap: 1rem;
}

.admin-service-side {
    display: grid;
    gap: 1rem;
    background: transparent;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-side-card,
.admin-upload-card {
    padding: 1rem;
}

.admin-side-kicker,
.admin-upload-label {
    margin: 0;
    color: #a66a22;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
}

.admin-service-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.admin-schedule-field.is-hidden {
    display: none;
}

.admin-service-fields-grid.is-slug-title-stack {
    grid-template-columns: 1fr;
}

.admin-service-main-card label,
.admin-upload-card label {
    display: block;
    margin-bottom: 0.35rem;
    color: #5d503f;
    font-size: 0.9rem;
    font-weight: 700;
}

.admin-service-main-card input,
.admin-service-main-card select,
.admin-service-main-card textarea,
.admin-upload-card input {
    width: 100%;
    border: 0;
    border-radius: 18px;
    padding: 0.9rem 1rem;
    background: linear-gradient(180deg, #ffffff, #f9f6f1);
    color: var(--ink);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-service-main-card textarea {
    min-height: 180px;
    resize: vertical;
}

.admin-upload-card {
    display: grid;
    gap: 0.9rem;
}

.admin-upload-card-compact {
    gap: 0.65rem;
}

.admin-upload-copy h3 {
    margin: 0.35rem 0 0.15rem;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 400;
    color: #3a332d;
}

.admin-upload-copy p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.94rem;
}

.admin-cover-dropzone {
    min-height: 182px;
    border-radius: 24px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    background: linear-gradient(180deg, #fff, #f7f2eb);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-cover-dropzone:hover,
.admin-cover-dropzone.is-dragover {
    transform: translateY(-1px);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-cover-dropzone img {
    width: 108px;
    height: 108px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    flex: 0 0 108px;
}

.admin-cover-empty,
.admin-cover-empty-preview {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 18px;
    color: #8f5f2f;
    font-weight: 700;
    background: linear-gradient(180deg, #fff, #f7f2eb);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-cover-empty i,
.admin-cover-empty-preview i {
    font-size: 1.05rem;
    opacity: 0.85;
}

.admin-cover-empty {
    width: 108px;
    height: 108px;
    flex: 0 0 108px;
    font-size: 0.82rem;
    text-align: center;
    padding: 0.6rem;
}

.admin-cover-empty-preview {
    width: 100%;
    height: 100%;
    min-height: 220px;
    font-size: 1rem;
}

.admin-cover-dropzone .is-hidden,
.admin-cover-preview-frame .is-hidden {
    display: none !important;
}

.admin-cover-dropzone-hint {
    color: #7d6d5d;
    font-size: 0.92rem;
    font-weight: 700;
    max-width: 220px;
}

.admin-status-chip-wrap {
    display: flex;
    align-items: end;
    justify-content: flex-start;
}

.admin-service-status-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff, #f6f1ea);
    color: #7f5420;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    font-weight: 700;
}

.admin-step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.25rem;
}

.admin-step-action {
    border: 0;
    border-radius: 999px;
    padding: 0.85rem 1.2rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.admin-step-action:hover {
    transform: translateY(-1px);
}

.admin-step-action-secondary {
    background: #fff;
    color: #5d503f;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    text-decoration: none;
}

.admin-step-action-primary,
.admin-toolbar-save-button {
    background: linear-gradient(135deg, #c88c50, #aa6e3c);
    color: #fff;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-toolbar-save-button {
    border: 0;
    min-height: 46px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
}

.admin-toolbar-save-button i {
    margin-right: 0;
}

.admin-side-card-image {
    display: grid;
    gap: 0.85rem;
}

.admin-cover-preview-frame {
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(160deg, #f2ede6, #fff);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-cover-preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-side-meta {
    display: grid;
    gap: 0.2rem;
}

.admin-side-meta strong {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 400;
    color: #2f291f;
}

.admin-side-meta span {
    color: #8a7a6b;
    font-size: 0.9rem;
}

.admin-checklist {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: grid;
    gap: 0.55rem;
}

.admin-checklist li {
    position: relative;
    padding: 0.8rem 0.9rem 0.8rem 2.35rem;
    border-radius: 16px;
    background: #fff;
    color: #5d503f;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-checklist li::before {
    content: '';
    position: absolute;
    left: 0.9rem;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    border-radius: 50%;
    background: #e6dccf;
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-checklist li.is-complete {
    color: #2f291f;
}

.admin-checklist li.is-complete::before {
    background: linear-gradient(135deg, #c88c50, #aa6e3c);
}

.admin-google-preview,
.admin-social-preview-list,
.admin-publication-state {
    display: grid;
    gap: 0.65rem;
}

.admin-google-preview {
    padding: 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #f7f3ee);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-google-preview strong {
    font-size: 1.1rem;
    color: #1f1f1f;
}

.admin-google-preview span {
    color: #2a7f3f;
    font-size: 0.88rem;
}

.admin-google-preview p {
    margin: 0;
    color: #5f5b56;
    line-height: 1.55;
}

.admin-social-preview-list article {
    border-radius: 18px;
    padding: 0.9rem 1rem;
    background: linear-gradient(180deg, #fff, #f7f2eb);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
}

.admin-social-preview-list strong {
    display: block;
    margin-bottom: 0.15rem;
    color: #3a332d;
}

.admin-social-preview-list p,
.admin-publication-state span {
    margin: 0;
    color: #6c5f55;
    line-height: 1.45;
}

.admin-publication-state strong {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: #2f291f;
}

.admin-toolbar-save-button:hover,
.admin-step-action-primary:hover {
    filter: brightness(1.03);
}

.catalog-page-wrap {
    padding: 1.2rem 0 2.2rem;
}

.catalog-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.8rem;
}

.catalog-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 3.8vw, 3rem);
}

.catalog-toolbar {
    display: flex;
    align-items: center;
}

.catalog-view-switch {
    display: inline-flex;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #cfb28f;
    background: linear-gradient(180deg, #f8f1e8, #f2e4d3);
}

.catalog-view-option {
    width: 52px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8a5b2d;
    text-decoration: none;
    border-right: 1px solid #cfb28f;
    transition: background 0.2s ease, color 0.2s ease;
}

.catalog-view-option:last-child {
    border-right: 0;
}

.catalog-view-option.is-active {
    background: #b97a36;
    color: #fff;
}

.catalog-cards {
    margin-top: 1.2rem;
}

.catalog-cards.is-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.catalog-cards.is-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.catalog-card {
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #fbf8f4);
    box-shadow: inset -3px -3px 3px rgba(200, 200, 200, 0.2), inset 3px 3px 3px rgba(200, 200, 200, 0.1);
    overflow: hidden;
}

.catalog-card-link {
    color: inherit;
    text-decoration: none;
    display: grid;
    height: 100%;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.catalog-card-link:hover,
.catalog-card-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.catalog-card-thumb {
    aspect-ratio: 16 / 10;
    background: #f6efe6;
}

.catalog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.catalog-card-thumb-empty {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c48a4a;
    font-size: 1.25rem;
}

.catalog-card-body {
    padding: 0.9rem 1rem 1rem;
}

.catalog-card-body h2 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
    color: #2f291f;
}

.catalog-card-body p {
    margin: 0.45rem 0 0;
    color: #74675a;
    line-height: 1.5;
}

.catalog-books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
    gap: 1rem;
}

.catalog-book-card {
    display: flex;
    flex-direction: column;
    padding: 0.7rem;
    border: 1px solid rgba(207, 178, 143, 0.45);
    box-shadow: 0 14px 28px rgba(92, 63, 31, 0.08);
}

.catalog-book-cover-link {
    text-decoration: none;
    color: inherit;
}

.catalog-book-thumb {
    aspect-ratio: auto;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #f9f3ea, #f2e6d6);
}

.catalog-book-thumb img {
    width: auto;
    height: 200px;
    max-height: 200px;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.catalog-card-thumb.catalog-book-thumb img {
    width: auto;
    height: 200px;
    max-height: 200px;
    object-fit: contain;
}

.catalog-book-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.85rem 0.2rem 0.2rem;
}

.catalog-book-body h2 {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.35;
    min-height: 2.45em;
}

.catalog-book-body h2 a {
    color: #2f291f;
    text-decoration: none;
}

.catalog-book-body p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #74675a;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catalog-book-cta {
    margin-top: auto;
    min-height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #b97a36;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.catalog-book-cta:hover,
.catalog-book-cta:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.catalog-cards.is-list .catalog-card-link {
    grid-template-columns: 220px 1fr;
}

.catalog-cards.is-list .catalog-card-thumb {
    aspect-ratio: auto;
    min-height: 170px;
    height: 100%;
}

.catalog-empty {
    color: #74675a;
    margin: 0.4rem 0;
}

.catalog-pagination {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.catalog-page-link {
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8a5b2d;
    border: 1px solid #cfb28f;
    background: linear-gradient(180deg, #f8f1e8, #f2e4d3);
}

.catalog-page-link.is-active {
    background: #b97a36;
    border-color: #b97a36;
    color: #fff;
}

@keyframes admin-step-fade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1200px) {
    .admin-service-grid {
        grid-template-columns: 1fr;
    }

    .admin-service-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-cms-head-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 840px) {
    .admin-service-fields-grid {
        grid-template-columns: 1fr;
    }

    .admin-step-actions {
        flex-direction: column;
    }

    .admin-step-action {
        width: 100%;
        justify-content: center;
    }

    .admin-toolbar-user-text {
        display: none;
    }

    .admin-toolbar-save-button {
        padding-inline: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .catalog-cards.is-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .catalog-cards.is-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-books-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .catalog-cards.is-list .catalog-card-link {
        grid-template-columns: 180px 1fr;
    }
}

@media (max-width: 700px) {
    .catalog-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-cards.is-grid {
        grid-template-columns: 1fr;
    }

    .catalog-books-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-cards.is-list .catalog-card-link {
        grid-template-columns: 1fr;
    }

    .catalog-cards.is-list .catalog-card-thumb {
        min-height: auto;
        aspect-ratio: 16 / 10;
    }

    .catalog-book-body {
        padding-inline: 0;
    }
}

@media (prefers-color-scheme: dark) {
    body.admin-area.admin-theme-dark {
        background: linear-gradient(180deg, #1d1a17 0%, #151210 100%);
    }

    body.admin-area.admin-theme-dark .admin-page-head-card,
    body.admin-area.admin-theme-dark .admin-cms-card,
    body.admin-area.admin-theme-dark .admin-cms-list,
    body.admin-area.admin-theme-dark .admin-content-toolbar,
    body.admin-area.admin-theme-dark .admin-service-main-card,
    body.admin-area.admin-theme-dark .admin-side-card,
    body.admin-area.admin-theme-dark .admin-upload-card {
        background: linear-gradient(180deg, #2a2622, #1d1916);
        color: #f4ede5;
    }
}
