@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --rts-bg: #fff2de;
    --rts-bg-2: #ffe2bf;
    --rts-ink: #2d1a12;
    --rts-muted: #6c5142;
    --rts-card: #fffdf8;
    --rts-accent: #dc4f1a;
    --rts-accent-2: #f3a11d;
    --rts-accent-3: #0f7a5f;
    --rts-border: #f5cc9f;
    --rts-shadow: 0 18px 36px rgba(150, 66, 22, 0.17);
}

body {
    background-color: #f6efe4;
    background-image:
        radial-gradient(circle at 8% 12%, rgba(15, 122, 95, 0.1) 0, rgba(15, 122, 95, 0) 28%),
        radial-gradient(circle at 88% 12%, rgba(220, 79, 26, 0.13) 0, rgba(220, 79, 26, 0) 26%),
        radial-gradient(circle at 82% 84%, rgba(243, 161, 29, 0.14) 0, rgba(243, 161, 29, 0) 24%),
        linear-gradient(180deg, #fff9ef 0%, #f6efe4 55%, #efe4d4 100%);
    color: var(--rts-ink);
}

html,
body {
    touch-action: manipulation;
}

*,
*::before,
*::after {
    -webkit-tap-highlight-color: transparent !important;
}

a,
button,
input,
select,
textarea,
label,
summary {
    -webkit-tap-highlight-color: transparent !important;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none !important;
}

a:active,
button:active,
input:active,
select:active,
textarea:active {
    outline: none !important;
    box-shadow: none !important;
}

.rts-topbar-wrap {
    position: sticky;
    top: 0;
    z-index: 42;
    padding: 12px 12px 4px;
}

.admin-bar .rts-topbar-wrap {
    top: 32px;
}

.rts-topbar-shell {
    width: min(100%, 1120px);
    margin: 0 auto;
    border: 1px solid #edbe92;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(255, 253, 250, 0.96), rgba(255, 239, 217, 0.94));
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 24px rgba(188, 90, 27, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    position: relative;
    overflow: visible;
}

.rts-topbar-shell::before {
    content: "";
    position: absolute;
    right: -32px;
    top: -34px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 161, 29, 0.28) 0, rgba(243, 161, 29, 0) 70%);
    pointer-events: none;
}

.rts-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "DM Serif Display", Georgia, serif;
    color: #8f2e12;
    text-decoration: none;
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 0.3px;
    min-width: 0;
    max-width: 100%;
}

.rts-brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 11px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(223, 165, 123, 0.7);
    box-shadow: 0 6px 14px rgba(166, 75, 26, 0.16);
}

.rts-brand-text {
    display: inline-block;
    min-width: 0;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rts-main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.rts-top-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 14px;
    margin-right: 4px;
    color: var(--rts-muted);
    font-size: 0.78rem;
    white-space: nowrap;
}

.rts-top-contact span {
    font-weight: 700;
    color: #6f3417;
}

.rts-top-contact a {
    color: #7f3515;
    text-decoration: none;
    border-bottom: 1px dashed rgba(143, 58, 22, 0.35);
}

.rts-top-contact a:hover {
    color: #b7491a;
}

.rts-main-nav a {
    color: var(--rts-ink);
    text-decoration: none;
    border: 1px solid #efc8a6;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.86rem;
    font-weight: 700;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.rts-main-nav a:hover {
    transform: translateY(-1px);
    border-color: #e6b48a;
    background: #fff5e8;
    box-shadow: 0 5px 12px rgba(188, 90, 27, 0.12);
}

.rts-main-nav a.is-active {
    color: #fff;
    border-color: #d95d22;
    background: linear-gradient(120deg, #dc4f1a, #f3a11d);
    box-shadow: 0 8px 16px rgba(220, 79, 26, 0.24);
}

.rts-menu-toggle {
    appearance: none;
    border: 1px solid #e9ba95;
    background: linear-gradient(145deg, #fffefb, #ffeed9);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: none !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: auto;
    cursor: pointer;
    gap: 3px;
    flex-direction: column;
}

.rts-menu-toggle span {
    width: 17px;
    height: 2px;
    border-radius: 4px;
    background: #7a3111;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.rts-topbar-shell.is-open .rts-menu-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.rts-topbar-shell.is-open .rts-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.rts-topbar-shell.is-open .rts-menu-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.rts-shell {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 22px 14px;
    color: var(--rts-ink);
    font-family: "Manrope", "Segoe UI", sans-serif;
    position: relative;
    isolation: isolate;
}

.rts-shell::before,
.rts-shell::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(5px);
}

.rts-shell::before {
    width: 220px;
    height: 220px;
    right: -65px;
    top: 8px;
    background: radial-gradient(circle at 35% 35%, rgba(243, 161, 29, 0.26), rgba(243, 161, 29, 0));
}

.rts-shell::after {
    width: 210px;
    height: 210px;
    left: -70px;
    bottom: -16px;
    background: radial-gradient(circle at 60% 40%, rgba(220, 79, 26, 0.22), rgba(220, 79, 26, 0));
}

.rts-shell h1,
.rts-shell h2,
.rts-shell h3,
.rts-shell h4 {
    font-family: "DM Serif Display", Georgia, serif;
    margin-top: 0;
    letter-spacing: 0.15px;
}

.rts-shell h2 {
    font-size: clamp(1.45rem, 2.8vw, 2.1rem);
}

.rts-privacy-policy {
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 18px 14px 30px;
    display: grid;
    gap: 14px;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--rts-ink);
}

.rts-privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.rts-privacy-card {
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid var(--rts-border);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(160, 67, 22, 0.08);
    padding: 16px;
}

.rts-privacy-card h1,
.rts-privacy-card h2 {
    margin: 0 0 8px;
    color: #6f2e11;
    font-family: "DM Serif Display", Georgia, serif;
}

.rts-privacy-card h1 {
    font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.rts-privacy-card h2 {
    font-size: clamp(1.08rem, 2.3vw, 1.34rem);
}

.rts-privacy-card p {
    margin: 0 0 8px;
    color: var(--rts-muted);
    line-height: 1.6;
}

.rts-privacy-card p:last-child {
    margin-bottom: 0;
}

.rts-privacy-card ul {
    margin: 8px 0 0;
    padding-left: 18px;
    color: var(--rts-muted);
    line-height: 1.6;
}

.rts-privacy-card li + li {
    margin-top: 5px;
}

.rts-privacy-meta {
    margin-top: 2px;
    font-size: 0.9rem;
}

.rts-privacy-intro {
    font-size: 1rem;
}

.rts-privacy-card a {
    color: #a13f18;
    text-decoration: none;
    border-bottom: 1px dashed rgba(161, 63, 24, 0.4);
}

.rts-privacy-card a:hover {
    color: #d1571f;
    border-bottom-color: rgba(209, 87, 31, 0.5);
}

.rts-reveal {
    animation: rtsReveal 0.6s ease both;
}

.rts-grid-2 > :nth-child(1),
.rts-grid-3 > :nth-child(1) {
    animation-delay: 0.02s;
}

.rts-grid-2 > :nth-child(2),
.rts-grid-3 > :nth-child(2) {
    animation-delay: 0.08s;
}

.rts-grid-3 > :nth-child(3) {
    animation-delay: 0.14s;
}

@keyframes rtsReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rts-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--rts-border);
    border-radius: 26px;
    background: linear-gradient(150deg, #fff6e9 0%, #ffe7c8 42%, #ffdcb8 100%);
    box-shadow: var(--rts-shadow);
    overflow: hidden;
    position: relative;
}

.rts-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.36) 0, rgba(255, 255, 255, 0) 32%),
        repeating-linear-gradient(140deg, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0.16) 7px, rgba(255, 255, 255, 0) 7px, rgba(255, 255, 255, 0) 16px);
}

.rts-hero-copy {
    padding: 22px 20px;
    position: relative;
    z-index: 1;
}

.rts-kicker {
    display: inline-block;
    border-radius: 999px;
    border: 1px solid rgba(15, 122, 95, 0.3);
    background: rgba(15, 122, 95, 0.13);
    color: #0f6751;
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.rts-hero-copy h1 {
    font-size: clamp(1.7rem, 7vw, 2.85rem);
    line-height: 1.1;
    margin-bottom: 10px;
    text-wrap: balance;
}

.rts-hero-copy p,
.rts-note {
    color: var(--rts-muted);
}

.rts-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 13px 0 6px;
}

.rts-chip {
    display: inline-flex;
    align-items: center;
    border: 1px dashed rgba(220, 79, 26, 0.48);
    background: rgba(255, 255, 255, 0.7);
    color: #8d3a16;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px 11px;
}

.rts-mini-grid {
    margin-top: 14px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.rts-mini-grid article {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid #f3c39d;
    border-radius: 14px;
    padding: 10px 11px;
    box-shadow: 0 8px 15px rgba(157, 63, 21, 0.08);
}

.rts-mini-grid strong {
    display: block;
    font-size: 1.04rem;
}

.rts-mini-grid span {
    color: var(--rts-muted);
    font-size: 0.76rem;
}

.rts-contact-inline {
    margin-top: 12px;
    font-size: 0.9rem;
}

.rts-contact-inline a {
    color: #973710;
    text-decoration: none;
}

.rts-contact-inline a:hover {
    text-decoration: underline;
}

.rts-contact-strip {
    margin: 16px 0 4px;
    border: 1px dashed #eab991;
    border-radius: 12px;
    padding: 10px 12px;
    background: linear-gradient(120deg, #fff8ee, #fff0dd);
    color: #7c451f;
    font-size: 0.9rem;
}

.rts-contact-strip a {
    color: #9d3d14;
    text-decoration: none;
}

.rts-contact-strip a:hover {
    text-decoration: underline;
}

.rts-hero-image {
    min-height: 220px;
    position: relative;
    padding: 14px 14px 12px;
    background:
        radial-gradient(circle at 75% 22%, rgba(15, 122, 95, 0.2), rgba(15, 122, 95, 0)),
        linear-gradient(145deg, #ffd6b7 0%, #ffc892 100%);
}

.rts-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    border: 4px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 28px rgba(67, 26, 6, 0.24);
    transform: rotate(-1.3deg) scale(1.02);
    display: block;
}

.rts-dish-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid #f6d1ae;
    display: block;
}

.rts-float-badge {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    border-radius: 999px;
    padding: 6px 12px;
    background: linear-gradient(120deg, rgba(233, 91, 31, 0.92), rgba(246, 164, 31, 0.92));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
    animation: rtsBadgeFloat 2.8s ease-in-out infinite;
}

.rts-float-top {
    top: 12px;
    right: 18px;
    animation-delay: 0.2s;
}

.rts-float-bottom {
    left: 18px;
    bottom: 16px;
}

@keyframes rtsBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.rts-banner {
    border: 1px solid var(--rts-border);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 20px;
    background:
        radial-gradient(circle at 95% 12%, rgba(15, 122, 95, 0.12), rgba(15, 122, 95, 0) 35%),
        linear-gradient(145deg, #fffdf8 0%, #ffedd4 100%);
    box-shadow: 0 12px 24px rgba(169, 71, 24, 0.1);
}

.rts-offer {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #f0c9a8;
    border-radius: 14px;
    padding: 13px;
    box-shadow: 0 8px 16px rgba(187, 85, 20, 0.08);
}

.rts-offer h3 {
    margin-bottom: 7px;
}

.rts-banner .rts-offer:nth-child(1) {
    background: linear-gradient(130deg, #fff8ea, #fff2dd);
}

.rts-banner .rts-offer:nth-child(2) {
    background: linear-gradient(130deg, #fff6e3, #ffeecf);
}

.rts-banner .rts-offer:nth-child(3) {
    background: linear-gradient(130deg, #fff9ee, #ffead1);
}

.rts-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 16px 0 24px;
}

.rts-process article {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 231, 0.94));
    border: 1px solid var(--rts-border);
    border-radius: 16px;
    padding: 13px;
    box-shadow: 0 10px 18px rgba(156, 63, 20, 0.08);
    position: relative;
}

.rts-process article::after {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--rts-accent), var(--rts-accent-2));
}

.rts-process article span {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--rts-accent), var(--rts-accent-2));
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.rts-process h4 {
    margin: 0 0 5px;
    font-size: 1.05rem;
}

.rts-process p {
    margin: 0;
    color: var(--rts-muted);
    font-size: 0.9rem;
}

.rts-highlight-strip {
    border: 1px solid #efbe94;
    border-left: 5px solid var(--rts-accent);
    border-radius: 12px;
    background: linear-gradient(120deg, #fff8ec, #ffedd8);
    padding: 10px 12px;
    margin: 8px 0 18px;
}

.rts-grid-2,
.rts-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.rts-card {
    background: var(--rts-card);
    border: 1px solid var(--rts-border);
    border-radius: 16px 16px 14px 14px;
    padding: 15px;
    box-shadow: 0 13px 24px rgba(162, 67, 22, 0.1);
    position: relative;
    overflow: hidden;
}

.rts-card::after {
    content: "";
    position: absolute;
    top: -34px;
    right: -34px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(15, 122, 95, 0.16), rgba(15, 122, 95, 0));
}

.rts-plan-card {
    border-color: #efbe92;
}

.rts-plan-card:nth-child(3n + 1) {
    background: linear-gradient(155deg, #fffdf8, #fff2df);
}

.rts-plan-card:nth-child(3n + 2) {
    background: linear-gradient(155deg, #fffdf7, #ffefd6);
}

.rts-plan-card:nth-child(3n + 3) {
    background: linear-gradient(155deg, #fffefb, #ffedd7);
}

.rts-plan-badge {
    display: inline-flex;
    margin-bottom: 8px;
    border-radius: 999px;
    background: rgba(220, 79, 26, 0.14);
    border: 1px solid rgba(220, 79, 26, 0.28);
    color: #a53a16;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 4px 10px;
}

.rts-point-list {
    margin: 9px 0 0;
    padding-left: 16px;
    color: var(--rts-muted);
    font-size: 0.9rem;
}

.rts-point-list li {
    margin-bottom: 5px;
}

.rts-section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 20px 0 12px;
}

.rts-price {
    font-size: 1.28rem;
    font-weight: 800;
    color: #9a3a15;
}

.rts-btn {
    appearance: none;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(118deg, #dc4f1a 0%, #f3a11d 52%, #f4b43e 100%);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    letter-spacing: 0.2px;
    padding: 11px 14px;
    margin-top: 10px;
    box-shadow: 0 11px 20px rgba(220, 79, 26, 0.27);
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.rts-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.98);
    box-shadow: 0 14px 22px rgba(220, 79, 26, 0.3);
}

.rts-btn:focus-visible {
    outline: 2px solid rgba(220, 79, 26, 0.4);
    outline-offset: 2px;
}

.rts-btn-outline {
    background: #fffdf8;
    color: var(--rts-accent);
    border: 1px solid #dc4f1a;
    box-shadow: inset 0 -2px 0 rgba(220, 79, 26, 0.08);
}

.rts-card form .rts-btn {
    width: 100%;
}

.rts-plans-grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.rts-subscribe-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
}

.rts-subscribe-card h3 {
    margin-bottom: 2px;
    line-height: 1.14;
}

.rts-subscribe-card p {
    margin: 0;
}

.rts-plan-subscribe-form label {
    display: block;
    margin-bottom: 2px;
    color: #6c3419;
    font-weight: 700;
}

.rts-plan-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.rts-plan-subscribe-form .rts-btn {
    margin-top: 0;
    min-height: 48px;
}

.rts-renew-card {
    border-color: #efb37d;
    background: linear-gradient(140deg, #fff9ef 0%, #ffe5c6 100%);
}

.rts-renew-card h3 {
    color: #8f3212;
}

.rts-renew-card .rts-btn {
    width: auto;
    min-width: 170px;
}

.rts-btn-renew {
    background: linear-gradient(118deg, #d14a18 0%, #f09316 56%, #f3bc46 100%);
}

.rts-inline-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rts-actions-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rts-actions-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.rts-actions-head h3 {
    margin: 0;
}

.rts-actions-head .rts-btn {
    margin-top: 0;
    width: auto;
}

.rts-actions-card p {
    margin: 0;
}

.rts-actions-card form {
    margin: 0;
}

.rts-link {
    color: var(--rts-accent);
    text-decoration: none;
    font-weight: 700;
}

.rts-link:hover {
    text-decoration: underline;
}

.rts-tab-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 10px 0 18px;
}

.rts-tab-nav a {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    text-align: center;
    border: 1px solid #f0c8aa;
    border-radius: 14px;
    background: linear-gradient(145deg, #fffdfa 0%, #ffeeda 100%);
    color: #7a3516;
    font-weight: 800;
    font-size: 0.94rem;
    letter-spacing: 0.2px;
    padding: 12px 14px;
    box-shadow: 0 8px 16px rgba(188, 90, 27, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.rts-tab-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(246, 164, 31, 0.08));
    opacity: 0;
    transition: opacity 0.18s ease;
}

.rts-tab-nav a:hover {
    transform: translateY(-2px);
    border-color: #e6b68f;
    box-shadow: 0 12px 20px rgba(188, 90, 27, 0.18);
}

.rts-tab-nav a:hover::before {
    opacity: 1;
}

.rts-tab-nav a:focus-visible {
    outline: 2px solid rgba(233, 91, 31, 0.35);
    outline-offset: 2px;
}

.rts-tab-nav a.is-active {
    border-color: #de6a2c;
    background: linear-gradient(120deg, #e95b1f, #f6a41f);
    color: #fff;
    box-shadow: 0 12px 22px rgba(233, 91, 31, 0.3);
}

.rts-tab-nav a.is-active:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(233, 91, 31, 0.32);
}

.rts-subscription-stats {
    margin-bottom: 14px;
}

.rts-stat-value {
    margin: 0;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.7rem;
    line-height: 1.15;
    color: #9e3e15;
}

.rts-stat-small {
    font-size: 1.2rem;
}

.rts-thumb {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    display: block;
}

.rts-progress-wrap {
    margin-top: 10px;
}

.rts-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    color: var(--rts-muted);
    font-size: 0.84rem;
}

.rts-progress-meta strong {
    color: var(--rts-ink);
}

.rts-progress-bar {
    height: 10px;
    border-radius: 999px;
    background: #ffe2cf;
    overflow: hidden;
}

.rts-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(120deg, var(--rts-accent), var(--rts-accent-2));
}

.rts-table-wrap {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--rts-border);
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(160, 67, 22, 0.08);
}

.rts-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 580px;
    table-layout: fixed;
}

.rts-table th,
.rts-table td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid #f2dece;
    font-size: 0.92rem;
    vertical-align: top;
    overflow-wrap: anywhere;
}

.rts-table th {
    background: #fff3e1;
    color: #804022;
}

.rts-table tbody tr:nth-child(even) td {
    background: rgba(255, 246, 235, 0.58);
}

.rts-cell-main {
    display: block;
    font-weight: 600;
}

.rts-cell-note {
    display: block;
    margin-top: 4px;
    color: var(--rts-muted);
    font-size: 0.79rem;
    line-height: 1.35;
}

.rts-notice {
    background: linear-gradient(120deg, #ecfdf3, #ddf8e7);
    border: 1px solid #afeac9;
    color: #125336;
    border-radius: 12px;
    padding: 10px 12px;
}

.rts-notice-error {
    background: linear-gradient(120deg, #fff3f2, #ffe7e6);
    border-color: #f5c0bb;
    color: #9f2d22;
}

.rts-auth-stack {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.rts-auth-mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.rts-auth-mode a {
    text-align: center;
    text-decoration: none;
    border: 1px solid #efc8a9;
    border-radius: 10px;
    padding: 9px 10px;
    background: linear-gradient(120deg, #fffaf2, #ffefd9);
    color: #7a3818;
    font-weight: 700;
}

.rts-auth-mode a.is-active {
    border-color: #dd6f35;
    background: linear-gradient(120deg, #dc4f1a, #f3a11d);
    color: #fff;
}

.rts-auth-card {
    border: 1px solid #f0c8a8;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.93);
    padding: 13px;
    box-shadow: 0 12px 20px rgba(160, 68, 23, 0.08);
}

.rts-auth-card h3 {
    margin-bottom: 8px;
}

.rts-auth-card .rts-btn {
    width: 100%;
}

.rts-shell input,
.rts-shell select,
.rts-shell textarea {
    width: 100%;
    border: 1px solid #e3c5ab;
    border-radius: 11px;
    background: #fffefb;
    padding: 10px 11px;
    margin-top: 4px;
    margin-bottom: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.rts-shell input:focus,
.rts-shell select:focus,
.rts-shell textarea:focus {
    outline: 2px solid rgba(220, 79, 26, 0.2);
    border-color: rgba(220, 79, 26, 0.58);
}

@media (min-width: 640px) {
    .rts-shell {
        padding: 26px 18px;
    }

    .rts-mini-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

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

    .rts-section-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .rts-actions-head .rts-btn {
        min-width: 180px;
    }
}

@media (max-width: 900px) {
    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    .admin-bar .rts-topbar-wrap {
        top: 46px;
    }

    .rts-menu-toggle {
        display: inline-flex !important;
    }

    .rts-topbar-shell {
        padding: 8px 10px;
        gap: 8px;
    }

    .rts-brand {
        font-size: 1.18rem;
        max-width: calc(100% - 52px);
    }

    .rts-brand-logo {
        width: 40px;
        height: 40px;
    }

    .rts-main-nav {
        position: absolute;
        left: 10px;
        right: 10px;
        top: calc(100% + 8px);
        margin-left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 7px;
        border: 1px solid #ebbd96;
        border-radius: 14px;
        background: linear-gradient(145deg, #fffdf8, #ffeed9);
        box-shadow: 0 14px 22px rgba(188, 90, 27, 0.16);
        padding: 11px;
    }

    .rts-topbar-shell.is-open .rts-main-nav {
        display: flex;
    }

    .rts-top-contact {
        display: none;
    }

    .rts-main-nav a {
        border-radius: 11px;
        text-align: center;
        padding: 10px 10px;
    }

    .rts-main-nav::before {
        content: attr(data-contact-label) ": " attr(data-contact-phone) " | " attr(data-contact-email);
        display: block;
        text-align: center;
        color: #7c3815;
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .rts-plan-subscribe-form .rts-btn {
        width: 100%;
    }

    .rts-actions-head .rts-btn {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .rts-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .rts-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 10px;
    }

    .rts-table thead {
        display: none;
    }

    .rts-table tbody,
    .rts-table tr {
        display: block;
    }

    .rts-table tr {
        border: 1px solid var(--rts-border);
        border-radius: 13px;
        background: rgba(255, 253, 248, 0.95);
        box-shadow: 0 8px 16px rgba(160, 67, 22, 0.08);
        overflow: hidden;
    }

    .rts-table tr + tr {
        margin-top: 10px;
    }

    .rts-table td {
        display: grid;
        grid-template-columns: minmax(98px, 38%) minmax(0, 1fr);
        align-items: start;
        gap: 6px 10px;
        font-size: 0.9rem;
        padding: 9px 11px;
        border-bottom: 1px dashed #ecd5c0;
        background: transparent !important;
    }

    .rts-table td:last-child {
        border-bottom: 0;
    }

    .rts-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #7f3a1a;
        line-height: 1.35;
    }
}

@media (min-width: 901px) {
    .rts-topbar-shell .rts-main-nav {
        display: flex !important;
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        border: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
    }

    .rts-topbar-shell .rts-menu-toggle {
        display: none !important;
        visibility: hidden;
        pointer-events: none;
    }
}

@media (min-width: 980px) {
    .rts-shell {
        padding: 30px 18px;
    }

    .rts-hero {
        grid-template-columns: 1.08fr 0.92fr;
    }

    .rts-hero-copy {
        padding: 30px;
    }

    .rts-hero-image {
        min-height: 360px;
    }

    .rts-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rts-process {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
