/* =========================================================
   NOVA PRODUCT PRO - GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

:root {
    --nova-primary-color: #2563eb;
    --nova-amazon-button-color: #f59e0b;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111827;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.nova-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nova-button {
    display: inline-block;
    background: var(--nova-primary-color, #2563eb);
    color: #ffffff;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 800;
    border: none;
}

.nova-button:hover {
    opacity: 0.92;
}

.nova-button-primary {
    background: var(--nova-primary-color, #2563eb);
    color: #ffffff;
}

.nova-button-secondary {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.nova-empty-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
}


/* =========================================================
   HEADER
========================================================= */

.nova-site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.nova-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 24px 0 18px;
}

.nova-brand {
    display: block;
    min-width: 0;
}

.nova-logo {
    display: inline-block;
    font-size: 27px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.4px;
    color: #111827;
    text-decoration: none;
}

.nova-tagline {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: #6b7280;
    margin-top: 5px;
}

.nova-header-search {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 4px;
}

.nova-header-search input {
    width: 100%;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 10px 10px 10px 15px;
    font-size: 14px;
    outline: none;
    color: #111827;
}

.nova-header-search input::placeholder {
    color: #9ca3af;
}

.nova-header-search button {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: none;
    border-radius: 999px;
    background: var(--nova-primary-color, #2563eb);
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
}

.nova-header-search button:hover {
    opacity: 0.92;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nova-nav {
    width: 100%;
    border-top: 1px solid #f1f5f9;
    padding: 14px 0 16px;
    position: relative;
}

.nova-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nova-menu > li {
    position: relative;
    margin: 0;
    padding: 0;
}

.nova-menu > li > a {
    display: inline-block;
    background: transparent;
    border: none;
    padding: 0;
    color: #374151;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
}

.nova-menu > li > a:hover,
.nova-menu > li.current-menu-item > a,
.nova-menu > li.current-menu-ancestor > a,
.nova-menu > li.current_page_item > a {
    color: var(--nova-primary-color, #2563eb);
}

.nova-menu > li > .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 260px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 10px;
    margin: 0;
    list-style: none;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
    z-index: 9999;
}

.nova-menu > li:hover > .sub-menu {
    display: block;
}

.nova-menu > li > .sub-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 24px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    transform: rotate(45deg);
}

.nova-menu > li > .sub-menu > li > a {
    display: block;
    width: 100%;
    border-radius: 12px;
    padding: 11px 13px;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
}

.nova-menu > li > .sub-menu > li > a:hover {
    background: #f8fafc;
    color: var(--nova-primary-color, #2563eb);
}


/* =========================================================
   HOMEPAGE — YENİ TASARIM (açık, sıcak, hızlı)
========================================================= */

:root {
    --nova-warm-bg: #faf8f5;
    --nova-warm-card: #ffffff;
    --nova-warm-border: #ede9e1;
    --nova-warm-soft: #f5f1eb;
    --nova-warm-accent: #e8673a;
    --nova-warm-accent2: #2d6a4f;
    --nova-warm-text: #1a1a1a;
    --nova-warm-muted: #6b7280;
    --nova-warm-tag-bg: #fef3ed;
    --nova-warm-tag-color: #c4522a;
}

.nova-home-main {
    max-width: 1120px;
    margin: 48px auto;
    padding: 0 24px;
}

.nova-home-final-hero {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr;
    gap: 40px;
    align-items: center;
    background: var(--nova-warm-soft);
    border: 1px solid var(--nova-warm-border);
    border-radius: 28px;
    padding: 60px 52px;
    margin-bottom: 64px;
    position: relative;
    overflow: hidden;
}

.nova-home-final-hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232,103,58,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.nova-home-final-kicker,
.nova-home-section-head span,
.nova-home-cta-section span {
    display: inline-block;
    background: var(--nova-warm-tag-bg);
    color: var(--nova-warm-tag-color);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    border: 1px solid rgba(196,82,42,0.15);
}

.nova-home-final-content h1 {
    font-size: 50px;
    line-height: 1.07;
    letter-spacing: -1.5px;
    margin: 0 0 18px;
    color: var(--nova-warm-text);
    font-weight: 900;
}

.nova-home-final-content p {
    font-size: 18px;
    line-height: 1.72;
    color: var(--nova-warm-muted);
    margin: 0;
    max-width: 540px;
}

.nova-home-search {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    max-width: 560px;
}

.nova-home-search input {
    flex: 1;
    border: 1.5px solid var(--nova-warm-border);
    border-radius: 999px;
    padding: 13px 20px;
    font-size: 15px;
    outline: none;
    background: #ffffff;
    color: var(--nova-warm-text);
    transition: border-color 0.2s;
}

.nova-home-search input:focus {
    border-color: var(--nova-warm-accent);
}

.nova-home-search input::placeholder {
    color: #adb5bd;
}

.nova-home-search button {
    border: none;
    border-radius: 999px;
    padding: 13px 22px;
    background: var(--nova-warm-accent);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.nova-home-search button:hover {
    opacity: 0.88;
}

.nova-home-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.nova-home-featured-card,
.nova-home-trust-card {
    background: #ffffff;
    border: 1px solid var(--nova-warm-border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.nova-home-trust-card {
    padding: 32px;
}

.nova-home-featured-label,
.nova-home-trust-card > span {
    display: inline-block;
    background: #ecfdf5;
    color: #065f46;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.nova-home-featured-image,
.nova-home-latest-image {
    display: block;
    background: var(--nova-warm-soft);
    text-decoration: none;
}

.nova-home-featured-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--nova-warm-border);
    margin-bottom: 16px;
}

.nova-home-featured-image img,
.nova-home-latest-image img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
}

.nova-home-featured-placeholder,
.nova-home-latest-placeholder {
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nova-warm-muted);
    font-weight: 600;
    font-size: 14px;
}

.nova-home-featured-content h2,
.nova-home-trust-card h2 {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 10px;
    color: var(--nova-warm-text);
    font-weight: 800;
}

.nova-home-trust-card h2 {
    font-size: 24px;
}

.nova-home-featured-content h2 a,
.nova-home-latest-card h3 a {
    color: var(--nova-warm-text);
    text-decoration: none;
}

.nova-home-featured-content h2 a:hover,
.nova-home-latest-card h3 a:hover {
    color: var(--nova-warm-accent);
}

.nova-home-featured-content p,
.nova-home-trust-card p,
.nova-home-latest-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--nova-warm-muted);
    margin: 0 0 14px;
}

.nova-home-trust-card p {
    font-size: 16px;
    margin-bottom: 18px;
}

.nova-home-featured-link,
.nova-home-text-link,
.nova-home-read-more {
    color: var(--nova-warm-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.nova-home-featured-link:hover,
.nova-home-text-link:hover,
.nova-home-read-more:hover {
    text-decoration: underline;
}

.nova-home-text-link {
    white-space: nowrap;
}

.nova-home-trust-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--nova-warm-text);
    line-height: 1.8;
    font-size: 15px;
}

.nova-home-category-section,
.nova-home-latest-section,
.nova-home-benefits-section {
    margin-bottom: 64px;
}

.nova-home-section-head {
    max-width: 760px;
    margin-bottom: 32px;
}

.nova-home-section-head-row {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.nova-home-section-head h2 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 10px;
    color: var(--nova-warm-text);
    font-weight: 900;
}

.nova-home-section-head p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--nova-warm-muted);
    margin: 0;
}

.nova-home-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.nova-home-category-card,
.nova-home-latest-card,
.nova-home-benefit-card {
    background: var(--nova-warm-card);
    border: 1px solid var(--nova-warm-border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.nova-home-category-card {
    display: block;
    border-radius: 20px;
    padding: 22px;
    text-decoration: none;
    color: var(--nova-warm-text);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.nova-home-category-card:hover {
    transform: translateY(-3px);
    border-color: #f4c5b1;
    box-shadow: 0 10px 36px rgba(232,103,58,0.1);
}

.nova-home-category-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--nova-warm-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    border: 1px solid var(--nova-warm-border);
}

.nova-home-category-card h3 {
    font-size: 15px;
    line-height: 1.3;
    margin: 0 0 8px;
    color: var(--nova-warm-text);
    font-weight: 800;
}

.nova-home-category-card p {
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    color: var(--nova-warm-muted);
}

.nova-home-latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nova-home-latest-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nova-home-latest-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.nova-home-latest-content {
    padding: 18px 20px 20px;
}

.nova-home-latest-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: var(--nova-warm-muted);
    margin-bottom: 8px;
}

.nova-home-latest-meta a {
    color: var(--nova-warm-accent);
    text-decoration: none;
    font-weight: 700;
}

.nova-home-latest-card h3 {
    font-size: 17px;
    line-height: 1.35;
    margin: 0 0 8px;
    font-weight: 800;
    color: var(--nova-warm-text);
}

.nova-home-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nova-home-benefit-card {
    border-radius: 20px;
    padding: 28px;
    background: var(--nova-warm-soft);
    border: 1px solid var(--nova-warm-border);
    box-shadow: none;
}

.nova-home-benefit-card h3 {
    font-size: 19px;
    margin: 0 0 12px;
    color: var(--nova-warm-text);
    font-weight: 800;
}

.nova-home-benefit-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--nova-warm-muted);
    margin: 0;
}

.nova-home-cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 44px 48px;
    margin-bottom: 0;
}

.nova-home-cta-section span {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border: none;
}

.nova-home-cta-section h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #ffffff;
    font-weight: 900;
}

.nova-home-cta-section p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.75);
    margin: 0;
    max-width: 580px;
}

.nova-home-cta-section .nova-button,
.nova-home-cta-section .nova-button-primary {
    background: #ffffff;
    color: #1b4332;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 999px;
    padding: 13px 28px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s;
}

.nova-home-cta-section .nova-button:hover {
    opacity: 0.9;
}


/* =========================================================
   SINGLE PRODUCT / POST
========================================================= */

.nova-single-main {
    max-width: 960px;
    margin: 50px auto;
    padding: 0 20px;
}

.nova-single-wrapper {
    background: #ffffff;
}

.nova-single-header {
    margin-bottom: 28px;
}

.nova-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.nova-single-meta a {
    color: var(--nova-primary-color, #2563eb);
    text-decoration: none;
    font-weight: 700;
}

.nova-single-title {
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -1px;
    color: #111827;
    margin: 0 0 18px;
}

.nova-single-excerpt {
    font-size: 20px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
    max-width: 820px;
}

.nova-product-box {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 28px;
    margin: 34px 0 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.nova-product-image {
    border-radius: 22px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.nova-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.nova-product-image-placeholder {
    min-height: 280px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 700;
}

.nova-product-info-area h2 {
    font-size: 32px;
    line-height: 1.18;
    margin: 0 0 14px;
    color: #111827;
}

.nova-product-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #047857;
    font-size: 13px;
    font-weight: 900;
    padding: 8px 13px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.nova-product-subtitle {
    font-size: 17px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0 0 16px;
}

.nova-product-rating {
    display: inline-block;
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
    border-radius: 999px;
    padding: 8px 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.nova-product-price-note {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.nova-amazon-button {
    flex-shrink: 0;
    display: inline-block;
    background: var(--nova-amazon-button-color, #f59e0b);
    color: #111827;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);
}

.nova-amazon-button:hover {
    opacity: 0.9;
}

.nova-amazon-button-disabled {
    background: #e5e7eb;
    color: #6b7280;
    cursor: not-allowed;
    box-shadow: none;
}

.nova-affiliate-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
    border-radius: 18px;
    padding: 18px 20px;
    line-height: 1.65;
    margin: 28px 0;
}

.nova-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 34px 0;
}

.nova-pros-box,
.nova-cons-box,
.nova-specs-box,
.nova-faq-box {
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 26px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.nova-pros-box {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.nova-cons-box {
    background: #fff7ed;
    border-color: #fed7aa;
}

.nova-pros-box h2,
.nova-cons-box h2,
.nova-specs-box h2,
.nova-faq-box h2 {
    font-size: 24px;
    margin: 0 0 16px;
    color: #111827;
}

.nova-pros-box ul,
.nova-cons-box ul {
    margin: 0;
    padding-left: 20px;
}

.nova-pros-box li,
.nova-cons-box li {
    margin-bottom: 10px;
    line-height: 1.55;
}

.nova-specs-box,
.nova-faq-box {
    margin: 34px 0;
}

.nova-specs-box table {
    width: 100%;
    border-collapse: collapse;
}

.nova-specs-box th,
.nova-specs-box td {
    text-align: left;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.nova-specs-box th {
    width: 34%;
    color: #111827;
    font-weight: 800;
}

.nova-specs-box td {
    color: #4b5563;
}

.nova-specs-box tr:last-child th,
.nova-specs-box tr:last-child td {
    border-bottom: none;
}

.nova-faq-item {
    border-top: 1px solid #e5e7eb;
    padding: 18px 0;
}

.nova-faq-item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.nova-faq-item:last-child {
    padding-bottom: 0;
}

.nova-faq-item h3 {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 8px;
    color: #111827;
}

.nova-faq-item p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    color: #4b5563;
}

.nova-single-content,
.nova-page-content {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
}

.nova-single-content {
    margin-top: 34px;
}

.nova-single-content h2,
.nova-page-content h2 {
    font-size: 32px;
    line-height: 1.25;
    color: #111827;
    margin: 42px 0 16px;
}

.nova-single-content h3,
.nova-page-content h3 {
    font-size: 25px;
    line-height: 1.3;
    color: #111827;
    margin: 34px 0 14px;
}

.nova-single-content p,
.nova-page-content p {
    margin: 0 0 20px;
}

.nova-single-content ul,
.nova-single-content ol,
.nova-page-content ul,
.nova-page-content ol {
    margin: 0 0 24px 22px;
    padding: 0;
}

.nova-single-content li,
.nova-page-content li {
    margin-bottom: 10px;
}

.nova-single-content a,
.nova-page-content a {
    color: var(--nova-primary-color, #2563eb);
    font-weight: 700;
}

.nova-single-footer {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.nova-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.nova-single-tags strong {
    color: #111827;
}

.nova-single-tags a {
    display: inline-block;
    background: #f1f5f9;
    color: #374151;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   RATGEBER
========================================================= */

.nova-ratgeber-featured-image {
    margin: 34px 0 38px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.nova-ratgeber-featured-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.nova-ratgeber-recommendation-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
    border-radius: 26px;
    padding: 30px;
    margin: 38px 0;
}

.nova-ratgeber-recommendation-content span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.nova-ratgeber-recommendation-content h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #ffffff;
}

.nova-ratgeber-recommendation-content p {
    font-size: 16px;
    line-height: 1.65;
    color: #d1d5db;
    margin: 0;
    max-width: 680px;
}

.nova-ratgeber-recommendation-box .nova-button {
    flex-shrink: 0;
}


/* =========================================================
   RELATED POSTS
========================================================= */

.nova-related-posts {
    margin: 42px 0 34px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 26px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.nova-related-head {
    margin-bottom: 20px;
}

.nova-related-head span {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 800;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.nova-related-head h2 {
    font-size: 26px;
    line-height: 1.25;
    margin: 0;
    color: #111827;
}

.nova-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.nova-related-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    padding: 12px;
}

.nova-related-image {
    display: block;
    width: 150px;
    height: 110px;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
    text-decoration: none;
    flex-shrink: 0;
}

.nova-related-image img {
    width: 150px;
    height: 110px;
    object-fit: cover;
    display: block;
}

.nova-related-image-placeholder {
    width: 150px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    border-radius: 14px;
    background: #f8fafc;
}

.nova-related-content h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 8px;
}

.nova-related-content h3 a {
    color: #111827;
    text-decoration: none;
}

.nova-related-content h3 a:hover {
    color: var(--nova-primary-color, #2563eb);
}

.nova-related-content p {
    font-size: 14px;
    line-height: 1.55;
    color: #6b7280;
    margin: 0 0 10px;
}

.nova-related-link {
    color: var(--nova-primary-color, #2563eb);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
}

.nova-related-link:hover {
    text-decoration: underline;
}


/* =========================================================
   ARCHIVE / SEARCH / RATGEBER / PAGE
========================================================= */

.nova-archive-main,
.nova-search-main,
.nova-ratgeber-main {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.nova-page-main {
    max-width: 960px;
    margin: 50px auto;
    padding: 0 20px;
}

.nova-archive-header,
.nova-search-header,
.nova-ratgeber-header,
.nova-page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 46px 38px;
    margin-bottom: 38px;
}

.nova-archive-kicker,
.nova-search-kicker,
.nova-ratgeber-kicker,
.nova-page-kicker {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.nova-archive-header h1,
.nova-search-header h1,
.nova-ratgeber-header h1,
.nova-page-header h1 {
    font-size: 44px;
    line-height: 1.1;
    margin: 0 0 14px;
    color: #111827;
    letter-spacing: -1px;
}

.nova-archive-header p,
.nova-archive-description,
.nova-search-header p,
.nova-ratgeber-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 760px;
    margin: 0;
}

.nova-archive-grid,
.nova-search-grid,
.nova-ratgeber-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.nova-archive-card,
.nova-search-card,
.nova-ratgeber-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.nova-archive-image,
.nova-search-image,
.nova-ratgeber-image {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    text-decoration: none;
}

.nova-archive-image img,
.nova-search-image img,
.nova-ratgeber-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.nova-archive-image-placeholder,
.nova-search-image-placeholder,
.nova-ratgeber-image-placeholder {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 800;
}

.nova-archive-card-meta,
.nova-search-card-meta,
.nova-ratgeber-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
}

.nova-search-card-meta a,
.nova-ratgeber-meta a {
    color: var(--nova-primary-color, #2563eb);
    text-decoration: none;
    font-weight: 700;
}

.nova-archive-card h2,
.nova-search-card h2,
.nova-ratgeber-card h2 {
    font-size: 27px;
    line-height: 1.25;
    margin: 0 0 12px;
}

.nova-archive-card h2 a,
.nova-search-card h2 a,
.nova-ratgeber-card h2 a {
    color: #111827;
    text-decoration: none;
}

.nova-archive-card p,
.nova-search-card p,
.nova-ratgeber-card p {
    color: #6b7280;
    line-height: 1.65;
    margin: 0 0 18px;
}


/* =========================================================
   SEARCH RESULT SECTIONS / FORM
========================================================= */

.nova-search-results-section {
    margin-bottom: 52px;
}

.nova-search-section-head {
    margin-bottom: 24px;
}

.nova-search-section-head span {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 800;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.nova-search-section-head h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0;
    color: #111827;
}

.nova-search-ratgeber-section {
    padding-top: 10px;
}

.nova-search-form {
    display: flex;
    gap: 12px;
    max-width: 680px;
    margin-top: 24px;
}

.nova-search-form input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 14px 18px;
    font-size: 16px;
    outline: none;
}

.nova-search-form input:focus {
    border-color: var(--nova-primary-color, #2563eb);
}

.nova-search-form button {
    border: none;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 800;
    background: var(--nova-primary-color, #2563eb);
    color: #ffffff;
    cursor: pointer;
}

.nova-search-empty {
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 50px 34px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.nova-search-empty h2 {
    font-size: 34px;
    margin: 0 0 14px;
    color: #111827;
}

.nova-search-empty p {
    max-width: 620px;
    margin: 0 auto 26px;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}


/* =========================================================
   BREADCRUMB / PAGE / 404
========================================================= */

.nova-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.nova-breadcrumb a {
    color: var(--nova-primary-color, #2563eb);
    text-decoration: none;
    font-weight: 700;
}

.nova-breadcrumb a:hover {
    text-decoration: underline;
}

.nova-breadcrumb span {
    color: #6b7280;
}

.nova-breadcrumb span:last-child {
    color: #374151;
    font-weight: 600;
}

.nova-page-featured-image {
    margin: 0 0 34px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.nova-page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.nova-pagination {
    margin-top: 38px;
}

.nova-pagination .nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nova-pagination a,
.nova-pagination span {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #111827;
    text-decoration: none;
    font-weight: 700;
}

.nova-pagination .current {
    background: var(--nova-primary-color, #2563eb);
    color: #ffffff;
}

.nova-error-main {
    max-width: 900px;
    margin: 70px auto;
    padding: 0 20px;
}

.nova-error-box {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 32px;
    padding: 70px 40px;
}

.nova-error-code {
    display: inline-block;
    font-size: 72px;
    line-height: 1;
    font-weight: 900;
    color: var(--nova-primary-color, #2563eb);
    margin-bottom: 18px;
}

.nova-error-box h1 {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 16px;
    color: #111827;
}

.nova-error-box p {
    max-width: 560px;
    margin: 0 auto 28px;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

.nova-error-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

.nova-site-footer {
    background: #111827;
    color: #d1d5db;
    margin-top: 60px;
}

.nova-footer-inner {
    padding: 35px 0;
}

.nova-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr;
    gap: 40px;
    align-items: start;
}

.nova-footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.nova-footer-brand p {
    max-width: 650px;
    line-height: 1.6;
    margin: 0;
}

.nova-footer-menu-area h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 14px;
}

.nova-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nova-footer-menu li {
    margin-bottom: 10px;
}

.nova-footer-menu a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 600;
}

.nova-footer-menu a:hover {
    color: #ffffff;
}

.nova-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 30px;
    padding-top: 20px;
}

.nova-copyright {
    font-size: 14px;
    color: #9ca3af;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {
    .nova-home-final-hero,
    .nova-home-latest-grid,
    .nova-home-benefits-grid {
        grid-template-columns: 1fr;
    }

    .nova-home-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nova-home-section-head-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .nova-product-box,
    .nova-pros-cons {
        grid-template-columns: 1fr;
    }

    .nova-product-info-area h2 {
        font-size: 26px;
    }
}

@media (max-width: 760px) {
    .nova-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .nova-home-main,
    .nova-single-main,
    .nova-archive-main,
    .nova-page-main,
    .nova-search-main,
    .nova-error-main,
    .nova-ratgeber-main {
        margin-top: 34px;
        margin-bottom: 34px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .nova-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 0 14px;
    }

    .nova-logo {
        font-size: 24px;
    }

    .nova-tagline {
        font-size: 12px;
        max-width: 280px;
    }

    .nova-header-search {
        width: 100%;
        max-width: 100%;
        margin-top: 4px;
    }

    .nova-nav {
        width: 100%;
        padding: 12px 0 14px;
        border-top: 1px solid #f1f5f9;
        overflow: visible;
    }

    .nova-menu {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 10px;
        padding: 0;
        margin: 0;
        list-style: none;
        overflow: visible;
    }

    .nova-menu > li {
        position: relative;
        flex: 0 0 auto;
    }

    .nova-menu > li > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        border-radius: 999px;
        padding: 10px 14px;
        color: #374151;
        font-size: 14px;
        font-weight: 800;
        line-height: 1;
        white-space: nowrap;
        text-decoration: none;
    }

    .nova-menu > li.current-menu-item > a,
    .nova-menu > li.current-menu-ancestor > a,
    .nova-menu > li.current_page_item > a,
    .nova-menu > li.nova-mobile-submenu-open > a {
        background: #dbeafe;
        border-color: #bfdbfe;
        color: #1d4ed8;
    }

    .nova-menu > li:hover > .sub-menu {
        display: none;
    }

    .nova-menu > li > .sub-menu {
        display: none;
        position: static;
        width: 100%;
        min-width: 260px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 18px;
        padding: 10px;
        margin: 10px 0 0;
        list-style: none;
        box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
        z-index: 9999;
    }

    .nova-menu > li.nova-mobile-submenu-open > .sub-menu {
        display: block;
    }

    .nova-menu > li > .sub-menu::before {
        display: none;
    }

    .nova-menu > li > .sub-menu > li > a {
        display: block;
        width: 100%;
        border-radius: 12px;
        padding: 11px 13px;
        color: #374151;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.25;
        text-decoration: none;
        white-space: nowrap;
    }

    .nova-menu > li > .sub-menu > li > a:hover {
        background: #f8fafc;
        color: var(--nova-primary-color, #2563eb);
    }

    .nova-home-final-hero {
        padding: 34px 24px;
        border-radius: 24px;
    }

    .nova-home-final-content h1 {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .nova-home-final-content p {
        font-size: 17px;
    }

    .nova-home-search,
    .nova-search-form {
        flex-direction: column;
    }

    .nova-home-search input,
    .nova-home-search button,
    .nova-search-form input,
    .nova-search-form button {
        width: 100%;
    }

    .nova-home-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nova-home-final-actions .nova-button,
    .nova-amazon-button,
    .nova-ratgeber-recommendation-box .nova-button,
    .nova-home-cta-section .nova-button {
        width: 100%;
        text-align: center;
    }

    .nova-home-category-grid,
    .nova-home-latest-grid,
    .nova-home-benefits-grid,
    .nova-archive-card,
    .nova-search-card,
    .nova-ratgeber-card {
        grid-template-columns: 1fr;
    }

    .nova-home-section-head h2,
    .nova-archive-header h1,
    .nova-search-header h1,
    .nova-page-header h1,
    .nova-ratgeber-header h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .nova-search-section-head h2 {
        font-size: 25px;
    }

    .nova-single-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .nova-single-excerpt {
        font-size: 17px;
    }

    .nova-pros-box,
    .nova-cons-box,
    .nova-specs-box,
    .nova-faq-box {
        padding: 22px;
        border-radius: 22px;
    }

    .nova-specs-box table,
    .nova-specs-box tbody,
    .nova-specs-box tr,
    .nova-specs-box th,
    .nova-specs-box td {
        display: block;
        width: 100%;
    }

    .nova-specs-box tr {
        padding: 14px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .nova-specs-box th,
    .nova-specs-box td {
        border-bottom: none;
        padding: 0;
    }

    .nova-specs-box th {
        margin-bottom: 6px;
    }

    .nova-archive-header,
    .nova-search-header,
    .nova-page-header,
    .nova-ratgeber-header {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .nova-archive-image img,
    .nova-search-image img,
    .nova-ratgeber-image img,
    .nova-home-latest-image img,
    .nova-home-latest-placeholder,
    .nova-home-featured-image img,
    .nova-home-featured-placeholder {
        height: auto;
        min-height: 190px;
    }

    .nova-ratgeber-featured-image {
        border-radius: 22px;
        margin: 26px 0 32px;
    }

    .nova-ratgeber-featured-image img {
        height: auto;
        min-height: 220px;
    }

    .nova-ratgeber-recommendation-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 22px;
        border-radius: 22px;
    }

    .nova-ratgeber-recommendation-content h2 {
        font-size: 24px;
    }

    .nova-related-card {
        grid-template-columns: 1fr;
    }

    .nova-related-image,
    .nova-related-image img,
    .nova-related-image-placeholder {
        width: 100%;
        height: 180px;
    }

    .nova-home-cta-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 24px;
        border-radius: 24px;
    }

    .nova-footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .nova-breadcrumb {
        font-size: 13px;
        gap: 6px;
    }

    .nova-search-results-section {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .nova-logo {
        font-size: 22px;
    }

    .nova-tagline {
        font-size: 12px;
    }

    .nova-home-final-content h1 {
        font-size: 30px;
    }

    .nova-home-final-hero {
        padding: 30px 20px;
    }

    .nova-single-content,
    .nova-page-content {
        font-size: 16px;
        line-height: 1.75;
    }

    .nova-single-content h2,
    .nova-page-content h2 {
        font-size: 26px;
    }

    .nova-single-content h3,
    .nova-page-content h3 {
        font-size: 22px;
    }

    .nova-error-code {
        font-size: 54px;
    }

    .nova-error-box h1 {
        font-size: 30px;
    }

    .nova-error-box {
        padding: 42px 22px;
    }
}
/* =========================================================
   PRODUCT VERDICT BOX
========================================================= */

.nova-verdict-box {
    margin: 34px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid #dbeafe;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.nova-verdict-head {
    margin-bottom: 22px;
}

.nova-verdict-head span {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 900;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.nova-verdict-head h2 {
    font-size: 28px;
    line-height: 1.22;
    margin: 0 0 12px;
    color: #111827;
}

.nova-verdict-head p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.nova-verdict-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.nova-verdict-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 22px;
}

.nova-verdict-card h3 {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 14px;
    color: #111827;
}

.nova-verdict-card ul {
    margin: 0;
    padding-left: 20px;
}

.nova-verdict-card li {
    margin-bottom: 10px;
    line-height: 1.55;
    color: #374151;
}

.nova-verdict-card-positive {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.nova-verdict-card-negative {
    border-color: #fed7aa;
    background: #fff7ed;
}

@media (max-width: 760px) {
    .nova-verdict-box {
        padding: 22px;
        border-radius: 22px;
    }

    .nova-verdict-head h2 {
        font-size: 24px;
    }

    .nova-verdict-grid {
        grid-template-columns: 1fr;
    }

    .nova-verdict-card {
        padding: 20px;
    }
}
/* =========================================================
   PRODUCT TO RATGEBER BOX
========================================================= */

.nova-product-ratgeber-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin: 34px 0;
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    border: 1px solid #bfdbfe;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.nova-product-ratgeber-content {
    max-width: 680px;
}

.nova-product-ratgeber-content span {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 900;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.nova-product-ratgeber-content h2 {
    font-size: 28px;
    line-height: 1.22;
    margin: 0 0 12px;
    color: #111827;
}

.nova-product-ratgeber-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.nova-product-ratgeber-box .nova-button {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .nova-product-ratgeber-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 22px;
        border-radius: 22px;
    }

    .nova-product-ratgeber-content h2 {
        font-size: 24px;
    }

    .nova-product-ratgeber-box .nova-button {
        width: 100%;
        text-align: center;
        white-space: normal;
    }
}
/* =========================================================
   HOMEPAGE RATGEBER SECTION
========================================================= */

.nova-home-ratgeber-section {
    margin-bottom: 62px;
}

.nova-home-ratgeber-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.nova-home-ratgeber-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.nova-home-ratgeber-image {
    display: block;
    background: #f8fafc;
    text-decoration: none;
}

.nova-home-ratgeber-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.nova-home-ratgeber-placeholder {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 800;
}

.nova-home-ratgeber-content {
    padding: 20px;
}

.nova-home-ratgeber-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

.nova-home-ratgeber-card h3 {
    font-size: 21px;
    line-height: 1.3;
    margin: 0 0 10px;
}

.nova-home-ratgeber-card h3 a {
    color: #111827;
    text-decoration: none;
}

.nova-home-ratgeber-card h3 a:hover {
    color: var(--nova-primary-color, #2563eb);
}

.nova-home-ratgeber-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 14px;
}

@media (max-width: 950px) {
    .nova-home-ratgeber-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nova-home-ratgeber-image img,
    .nova-home-ratgeber-placeholder {
        height: auto;
        min-height: 190px;
    }
}
/* =========================================================
   RATGEBER TABLE OF CONTENTS BOX
========================================================= */

.nova-toc-box {
    margin: 30px 0 36px;
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid #dbeafe;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.nova-toc-box span {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 900;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.nova-toc-box h2 {
    font-size: 28px;
    line-height: 1.22;
    margin: 0 0 16px;
    color: #111827;
}

.nova-toc-box ul {
    margin: 0;
    padding-left: 20px;
}

.nova-toc-box li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #374151;
    font-weight: 700;
}

.nova-toc-box li:last-child {
    margin-bottom: 0;
}

@media (max-width: 760px) {
    .nova-toc-box {
        padding: 22px;
        border-radius: 22px;
    }

    .nova-toc-box h2 {
        font-size: 24px;
    }
}
/* =========================================================
   PREMIUM RATGEBER CONTENT DESIGN
========================================================= */

.nova-single-content {
    position: relative;
}

.nova-single-content > h2 {
    position: relative;
    font-size: 34px;
    line-height: 1.22;
    margin-top: 54px;
    margin-bottom: 18px;
    padding-top: 10px;
    color: #111827;
}

.nova-single-content > h2::before {
    content: "";
    display: block;
    width: 54px;
    height: 5px;
    border-radius: 999px;
    background: var(--nova-primary-color, #2563eb);
    margin-bottom: 16px;
}

.nova-single-content > h3 {
    font-size: 25px;
    line-height: 1.3;
    margin-top: 38px;
    margin-bottom: 14px;
    color: #111827;
}

.nova-single-content > p {
    font-size: 18px;
    line-height: 1.85;
    color: #374151;
    margin-bottom: 24px;
}

.nova-single-content > ul,
.nova-single-content > ol {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px 26px 22px 44px;
    margin: 24px 0 32px;
}

.nova-single-content > ul li,
.nova-single-content > ol li {
    margin-bottom: 12px;
    line-height: 1.65;
    color: #374151;
}

.nova-single-content > ul li:last-child,
.nova-single-content > ol li:last-child {
    margin-bottom: 0;
}

.nova-single-content strong {
    color: #111827;
    font-weight: 900;
}

.nova-single-content img {
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.nova-ratgeber-featured-image {
    margin-top: 30px;
    margin-bottom: 42px;
}

.nova-toc-box {
    margin-top: 34px;
    margin-bottom: 38px;
}

.nova-toc-box ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 22px;
    padding-left: 0;
    list-style: none;
}

.nova-toc-box li {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px 14px 12px 38px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.45;
}

.nova-toc-box li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 12px;
    color: var(--nova-primary-color, #2563eb);
    font-weight: 900;
}

.nova-faq-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.nova-faq-box h2 {
    position: relative;
    font-size: 28px;
}

.nova-faq-box h2::before {
    content: "";
    display: block;
    width: 48px;
    height: 5px;
    border-radius: 999px;
    background: var(--nova-primary-color, #2563eb);
    margin-bottom: 14px;
}

.nova-related-posts {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Mobile */
@media (max-width: 760px) {
    .nova-single-content > h2 {
        font-size: 28px;
        margin-top: 44px;
    }

    .nova-single-content > h3 {
        font-size: 23px;
    }

    .nova-single-content > p {
        font-size: 16px;
        line-height: 1.75;
    }

    .nova-single-content > ul,
    .nova-single-content > ol {
        padding: 20px 22px 20px 36px;
        border-radius: 18px;
    }

    .nova-toc-box ul {
        grid-template-columns: 1fr;
    }

    .nova-toc-box li {
        font-size: 15px;
    }
}
/* =========================================================
   NOVA PRODUCT PRO V1.2
   Alternative Produkte / Vergleich Kutusu
========================================================= */

.nova-alternative-products-box {
    margin: 42px 0;
    padding: 30px;
    border-radius: 22px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.nova-alternative-products-head {
    max-width: 760px;
    margin-bottom: 24px;
}

.nova-alternative-products-head span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.nova-alternative-products-head h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.nova-alternative-products-head p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.65;
}

.nova-alternative-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nova-alternative-product-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fef7ed 0%, #fff7ed 45%, #ffffff 100%);
    border: 1px solid #fed7aa;
    box-shadow: 0 10px 28px rgba(251, 146, 60, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.nova-alternative-product-card:hover {
    transform: translateY(-3px);
    border-color: #fdba74;
    box-shadow: 0 18px 38px rgba(251, 146, 60, 0.18);
}

.nova-alternative-product-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 850;
}

.nova-alternative-product-card p {
    margin: 0 0 18px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
}

.nova-alternative-product-button {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Mobil uyum */

@media (max-width: 900px) {
    .nova-alternative-products-grid {
        grid-template-columns: 1fr;
    }

    .nova-alternative-products-box {
        padding: 24px;
        margin: 34px 0;
    }

    .nova-alternative-products-head h2 {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .nova-alternative-products-box {
        padding: 20px;
        border-radius: 18px;
    }

    .nova-alternative-product-card {
        padding: 18px;
        min-height: auto;
    }

    .nova-alternative-products-head h2 {
        font-size: 22px;
    }

    .nova-alternative-products-head p,
    .nova-alternative-product-card p {
        font-size: 15px;
    }
}
/* =========================================================
   NOVA PRODUCT PRO V1.3
   Kategorie Kaufberater / Ratgeber Übersicht
========================================================= */

.nova-category-advisor-box {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
    gap: 24px;
    align-items: stretch;
    margin: 0 0 38px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 45%, #ffffff 100%);
    border: 1px solid #fed7aa;
    box-shadow: 0 18px 45px rgba(251, 146, 60, 0.13);
}

.nova-category-advisor-box-ratgeber {
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 45%, #ffffff 100%);
    border-color: #bfdbfe;
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.11);
}

.nova-category-advisor-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nova-category-advisor-content span {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 6px 13px;
    margin-bottom: 13px;
    border-radius: 999px;
    background: #ffedd5;
    color: #c2410c;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.02em;
}

.nova-category-advisor-box-ratgeber .nova-category-advisor-content span {
    background: #dbeafe;
    color: #1d4ed8;
}

.nova-category-advisor-content h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 29px;
    line-height: 1.2;
    font-weight: 900;
}

.nova-category-advisor-content p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
}

.nova-category-advisor-list {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(251, 146, 60, 0.25);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.nova-category-advisor-box-ratgeber .nova-category-advisor-list {
    border-color: rgba(37, 99, 235, 0.22);
}

.nova-category-advisor-list h3 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 850;
}

.nova-category-advisor-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nova-category-advisor-list li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 25px;
    color: #374151;
    font-size: 15px;
    line-height: 1.55;
}

.nova-category-advisor-list li:last-child {
    margin-bottom: 0;
}

.nova-category-advisor-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #f97316;
    font-weight: 900;
}

.nova-category-advisor-box-ratgeber .nova-category-advisor-list li::before {
    color: #2563eb;
}

/* Mobil uyum */

@media (max-width: 900px) {
    .nova-category-advisor-box {
        grid-template-columns: 1fr;
        padding: 25px;
        margin-bottom: 32px;
    }

    .nova-category-advisor-content h2 {
        font-size: 25px;
    }
}

@media (max-width: 520px) {
    .nova-category-advisor-box {
        padding: 21px;
        border-radius: 20px;
    }

    .nova-category-advisor-content h2 {
        font-size: 22px;
    }

    .nova-category-advisor-content p,
    .nova-category-advisor-list li {
        font-size: 15px;
    }

    .nova-category-advisor-list {
        padding: 18px;
        border-radius: 17px;
    }
}
/* =========================================================
   NOVA PRODUCT PRO V1.4
   Archiv / Kategorie Karten Rozet Sistemi
========================================================= */

.nova-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 12px;
}

.nova-card-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nova-card-badge-product {
    background: #ffedd5;
    color: #c2410c;
    border: 1px solid #fed7aa;
}

.nova-card-badge-ratgeber {
    background: #dbeafe;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.nova-card-badge-alt {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.nova-card-badge-guide {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

@media (max-width: 520px) {
    .nova-card-badges {
        gap: 6px;
    }

    .nova-card-badge {
        font-size: 11px;
        padding: 5px 9px;
    }
}
/* =========================================================
   NOVA PRODUCT PRO V1.5
   Startseite Karten Rozet Feinschliff
========================================================= */

.nova-home-card-badges {
    margin-top: 0;
    margin-bottom: 12px;
}

.nova-home-featured-content .nova-home-card-badges {
    margin-bottom: 14px;
}
/* =========================================================
   NOVA PRODUCT PRO V1.7
   Single İç Linkleme / Auch interessant
========================================================= */

.nova-internal-links-box {
    margin-top: 46px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 55%, #fff7ed 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.nova-related-head p {
    margin: 8px 0 0;
    max-width: 720px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.65;
}

.nova-internal-link-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.nova-internal-link-card:hover {
    transform: translateY(-3px);
    border-color: #fed7aa;
    box-shadow: 0 18px 38px rgba(251, 146, 60, 0.13);
}

.nova-internal-link-badges {
    margin-bottom: 10px;
}

.nova-internal-link-category {
    margin-bottom: 8px;
    color: #f97316;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 700px) {
    .nova-internal-links-box {
        padding: 22px;
        border-radius: 20px;
        margin-top: 36px;
    }
}
/* =========================================================
   NOVA PRODUCT PRO V1.8
   Mobil Görünüm ve Genel Tasarım Temizliği
========================================================= */

/* Genel kart ve kutu taşmalarını engelle */
.nova-single-wrapper,
.nova-product-box,
.nova-verdict-box,
.nova-product-ratgeber-box,
.nova-ratgeber-recommendation-box,
.nova-alternative-products-box,
.nova-internal-links-box,
.nova-category-advisor-box,
.nova-home-final-hero,
.nova-home-category-section,
.nova-home-latest-section,
.nova-home-ratgeber-section,
.nova-home-benefits-section,
.nova-home-cta-section {
    box-sizing: border-box;
}

/* Uzun başlıkların mobilde taşmasını engelle */
.nova-single-title,
.nova-product-info-area h2,
.nova-verdict-head h2,
.nova-alternative-products-head h2,
.nova-related-head h2,
.nova-home-final-content h1,
.nova-home-section-head h2,
.nova-category-advisor-content h2 {
    overflow-wrap: anywhere;
}

/* Ürün görselleri güvenli ölçeklensin */
.nova-product-image img,
.nova-ratgeber-featured-image img,
.nova-home-featured-image img,
.nova-home-latest-image img,
.nova-home-ratgeber-image img,
.nova-archive-image img,
.nova-related-image img {
    max-width: 100%;
    height: auto;
}

/* Butonlar mobilde taşmasın */
.nova-button,
.nova-amazon-button,
.nova-home-search button,
.nova-alternative-product-button {
    max-width: 100%;
    box-sizing: border-box;
}

/* Rozetler mobilde daha düzgün dizilsin */
.nova-card-badges {
    align-items: center;
}

/* Tablet ve küçük laptop düzeni */
@media (max-width: 900px) {

    .nova-single-main,
    .nova-archive-main,
    .nova-home-main {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nova-product-box {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nova-product-image-area {
        max-width: 100%;
    }

    .nova-product-info-area {
        width: 100%;
    }

    .nova-pros-cons,
    .nova-verdict-grid,
    .nova-related-grid,
    .nova-home-latest-grid,
    .nova-home-ratgeber-grid,
    .nova-home-benefits-grid {
        grid-template-columns: 1fr;
    }

    .nova-home-final-hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .nova-home-section-head-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

/* Mobil görünüm */
@media (max-width: 600px) {

    .nova-single-main,
    .nova-archive-main,
    .nova-home-main {
        padding-left: 12px;
        padding-right: 12px;
    }

    .nova-single-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .nova-breadcrumb {
        font-size: 13px;
        line-height: 1.5;
        flex-wrap: wrap;
        gap: 6px;
    }

    .nova-single-meta,
    .nova-archive-card-meta,
    .nova-home-latest-meta,
    .nova-home-ratgeber-meta {
        font-size: 13px;
        flex-wrap: wrap;
        gap: 5px;
    }

    .nova-single-title {
        font-size: 30px;
        line-height: 1.15;
    }

    .nova-single-excerpt {
        font-size: 16px;
        line-height: 1.6;
    }

    .nova-product-box,
    .nova-verdict-box,
    .nova-product-ratgeber-box,
    .nova-ratgeber-recommendation-box,
    .nova-alternative-products-box,
    .nova-internal-links-box,
    .nova-category-advisor-box {
        padding: 20px;
        border-radius: 20px;
    }

    .nova-product-info-area h2,
    .nova-verdict-head h2,
    .nova-alternative-products-head h2,
    .nova-related-head h2,
    .nova-category-advisor-content h2 {
        font-size: 23px;
        line-height: 1.25;
    }

    .nova-product-subtitle,
    .nova-verdict-head p,
    .nova-alternative-products-head p,
    .nova-related-head p,
    .nova-category-advisor-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .nova-amazon-button,
    .nova-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .nova-card-badges {
        gap: 6px;
        margin-bottom: 10px;
    }

    .nova-card-badge {
        font-size: 11px;
        padding: 5px 8px;
    }

    .nova-specs-box {
        overflow-x: auto;
    }

    .nova-specs-box table {
        min-width: 520px;
    }

    .nova-home-search {
        flex-direction: column;
        gap: 10px;
    }

    .nova-home-search input,
    .nova-home-search button {
        width: 100%;
    }

    .nova-home-final-content h1 {
        font-size: 34px;
        line-height: 1.12;
    }

    .nova-home-final-content p {
        font-size: 16px;
        line-height: 1.65;
    }

    .nova-home-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nova-home-final-actions .nova-button {
        width: 100%;
    }

    .nova-home-category-grid {
        grid-template-columns: 1fr;
    }

    .nova-home-category-card,
    .nova-home-latest-card,
    .nova-home-ratgeber-card,
    .nova-related-card,
    .nova-archive-card {
        border-radius: 18px;
    }
}

/* Çok küçük telefonlar */
@media (max-width: 420px) {

    .nova-single-title {
        font-size: 27px;
    }

    .nova-home-final-content h1 {
        font-size: 30px;
    }

    .nova-product-box,
    .nova-verdict-box,
    .nova-product-ratgeber-box,
    .nova-ratgeber-recommendation-box,
    .nova-alternative-products-box,
    .nova-internal-links-box,
    .nova-category-advisor-box {
        padding: 17px;
        border-radius: 18px;
    }

    .nova-product-info-area h2,
    .nova-verdict-head h2,
    .nova-alternative-products-head h2,
    .nova-related-head h2,
    .nova-category-advisor-content h2 {
        font-size: 21px;
    }

    .nova-card-badge {
        font-size: 10.5px;
        padding: 5px 7px;
    }
}
/* =========================================================
   NOVA PRODUCT PRO V1.8.2
   Ana Sayfa Neueste Empfehlungen Kart Hizalama
========================================================= */

.nova-home-latest-grid {
    align-items: stretch;
}

.nova-home-latest-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.nova-home-latest-image {
    display: block;
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: #f8fafc;
}

.nova-home-latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* İçerik alanını eşit ve düzenli yap */
.nova-home-latest-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

/* Başlık çok uzunsa kartı bozmasın */
.nova-home-latest-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 82px;
}

/* Açıklama çok uzunsa kesilsin */
.nova-home-latest-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 72px;
}

/* Buton her kartta alta otursun */
.nova-home-read-more {
    margin-top: auto;
}

/* Rozet ve meta alanı daha düzenli dursun */
.nova-home-latest-meta {
    min-height: 22px;
}

.nova-home-card-badges {
    min-height: 28px;
}

/* Tablet */
@media (max-width: 900px) {
    .nova-home-latest-image {
        height: 220px;
    }

    .nova-home-latest-content h3 {
        min-height: auto;
    }

    .nova-home-latest-content p {
        min-height: auto;
    }
}

/* Mobil */
@media (max-width: 600px) {
    .nova-home-latest-image {
        height: 210px;
    }

    .nova-home-latest-content {
        padding: 18px;
    }
}
/* =========================================================
   NOVA PRODUCT PRO V1.8.3
   Ana Sayfa Neueste Ratgeber Kart Hizalama
========================================================= */

.nova-home-ratgeber-grid {
    align-items: stretch;
}

.nova-home-ratgeber-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.nova-home-ratgeber-image {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: #f8fafc;
}

.nova-home-ratgeber-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* İçerik alanını eşit ve düzenli yap */
.nova-home-ratgeber-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

/* Ratgeber başlığı çok uzunsa kartı bozmasın */
.nova-home-ratgeber-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 82px;
}

/* Açıklama çok uzunsa kesilsin */
.nova-home-ratgeber-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 72px;
}

/* Ratgeber lesen linki her kartta alta otursun */
.nova-home-ratgeber-content .nova-home-read-more {
    margin-top: auto;
}

/* Meta ve rozet alanı sabit dursun */
.nova-home-ratgeber-meta {
    min-height: 22px;
}

.nova-home-ratgeber-content .nova-home-card-badges {
    min-height: 28px;
}

/* Tablet */
@media (max-width: 900px) {
    .nova-home-ratgeber-image {
        height: 220px;
    }

    .nova-home-ratgeber-content h3 {
        min-height: auto;
    }

    .nova-home-ratgeber-content p {
        min-height: auto;
    }
}

/* Mobil */
@media (max-width: 600px) {
    .nova-home-ratgeber-image {
        height: 210px;
    }

    .nova-home-ratgeber-content {
        padding: 18px;
    }
}
/* =========================================================
   NOVA PRODUCT PRO V1.8.4
   Kontakt Sayfası
========================================================= */

.nova-contact-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 20px 60px;
}

.nova-contact-hero {
    margin: 28px 0 34px;
    padding: 42px;
    border-radius: 26px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 55%, #fff7ed 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.nova-contact-kicker {
    display: inline-flex;
    padding: 6px 13px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #ffedd5;
    color: #c2410c;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.05em;
}

.nova-contact-hero h1 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 46px;
    line-height: 1.08;
    font-weight: 900;
}

.nova-contact-hero p {
    max-width: 760px;
    margin: 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
}

.nova-contact-grid {
    display: grid;
    gap: 26px;
    align-items: start;
}

.nova-contact-grid-has-info {
    grid-template-columns: 0.9fr 1.25fr;
}

.nova-contact-grid-single {
    grid-template-columns: 1fr;
}

.nova-contact-info,
.nova-contact-form-box {
    padding: 30px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.nova-contact-info h2,
.nova-contact-form-box h2 {
    margin: 0 0 24px;
    color: #111827;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.nova-contact-info-item {
    padding: 0 0 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.nova-contact-info-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.nova-contact-info-item strong {
    display: block;
    margin-bottom: 8px;
    color: #f97316;
    font-size: 14px;
    font-weight: 900;
}

.nova-contact-info-item p {
    margin: 0;
    color: #374151;
    line-height: 1.65;
}

.nova-contact-info-item a {
    color: #111827;
    font-weight: 800;
    text-decoration: none;
}

.nova-contact-form {
    display: grid;
    gap: 18px;
}

.nova-contact-form label {
    display: grid;
    gap: 7px;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}

.nova-contact-form input,
.nova-contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 13px 14px;
    background: #f9fafb;
    color: #111827;
    font-size: 15px;
}

.nova-contact-form input:focus,
.nova-contact-form textarea:focus {
    border-color: #f97316;
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.13);
    background: #ffffff;
}

.nova-contact-form button {
    justify-self: start;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    background: #f59e0b;
    color: #111827;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nova-contact-form button:hover {
    transform: translateY(-2px);
    background: #f97316;
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.24);
}

.nova-hidden-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
}

.nova-form-message {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 14px;
    font-weight: 800;
}

.nova-form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.nova-form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.nova-contact-map-section {
    margin-top: 34px;
}

.nova-contact-map {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.nova-contact-map iframe {
    display: block;
    width: 100%;
    min-height: 420px;
}

@media (max-width: 900px) {
    .nova-contact-grid-has-info {
        grid-template-columns: 1fr;
    }

    .nova-contact-hero {
        padding: 30px;
    }

    .nova-contact-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .nova-contact-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nova-contact-hero,
    .nova-contact-info,
    .nova-contact-form-box {
        padding: 22px;
        border-radius: 20px;
    }

    .nova-contact-hero h1 {
        font-size: 30px;
    }

    .nova-contact-form button {
        width: 100%;
    }
}