:root {
    --primary: #1f1a55;
    --red: #e53935;
    --orange: #f57c00;
    --yellow: #fbc02d;
    --green: #43a047;
    --teal: #00bcd4;
    --dark: #111;
    --body: #333;
    --muted: #555;
    --white: #fff;
    --font: "Playwrite DE Grund", cursive;
    --py: 100px;

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.11);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);

    --radius: 14px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ── RESET & BASE ── */
html {
    scroll-behavior: smooth;
}

body {
    background: #eef2f9;
    font-family: var(--font);
    color: var(--body);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ── PAGE WRAPPER ── */
.page-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* ═══════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════ */
.bredcrumb {
    background: linear-gradient(135deg, var(--primary), #2d265f);
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
}

.bredcrumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(229, 57, 53, 0.15) 0%, transparent 55%),
        radial-gradient(circle at 15% 80%, rgba(31, 26, 85, 0.2) 0%, transparent 45%);
}

.bredcrumb .product-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.bredcrumb .product-text h1 {
    font-family: var(--font);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.bredcrumb .product-text p {
    font-family: var(--font);
    font-size: 0.88rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bredcrumb .product-text p a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.bredcrumb .product-text p a:hover,
.bredcrumb .product-text p a.active {
    color: var(--white);
}

.bredcrumb .product-text p span {
    opacity: 0.45;
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════
   LAYOUT GRID
═══════════════════════════════════════════ */
.layout-grid {
    display: grid;
    grid-template-columns: 260px 1fr 240px;
    gap: 26px;
    align-items: start;
}

@media (max-width: 1100px) {
    .layout-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-left,
    .sidebar-right {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   SIDEBAR BASE
═══════════════════════════════════════════ */
.sidebar-left,
.sidebar-right {
    position: sticky;
    top: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(31, 26, 85, 0.09);
}

.widget-head {
    background: linear-gradient(135deg, var(--primary), #2d265f);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
}

.widget-body {
    padding: 16px 18px;
}

/* ═══════════════════════════════════════════
   TABLE OF CONTENTS
═══════════════════════════════════════════ */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toc-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--body);
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.4;
    transition: var(--transition);
}

.toc-list li a:hover {
    background: rgba(31, 26, 85, 0.07);
    color: var(--primary);
}

.toc-list li.toc-h2 a {
    padding-left: 22px;
}

.toc-list li.toc-h3 a {
    padding-left: 36px;
    font-weight: 400;
    opacity: 0.85;
}

.toc-list li a .toc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.5;
    flex-shrink: 0;
    transition: var(--transition);
}

.toc-list li a:hover .toc-dot,
.toc-list li a.toc-active .toc-dot {
    opacity: 1;
    background: var(--primary);
}

.toc-list li a.toc-active {
    background: rgba(31, 26, 85, 0.07);
    color: var(--primary);
    font-weight: 700;
}

/* Progress bar */
.toc-progress-wrap {
    height: 3px;
    background: rgba(31, 26, 85, 0.1);
    border-radius: 99px;
    overflow: hidden;
    margin: 0 18px 14px;
}

.toc-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--red));
    border-radius: 99px;
    transition: width 0.2s ease;
}

/* ═══════════════════════════════════════════
   CITY LIST (RIGHT SIDEBAR)
═══════════════════════════════════════════ */
.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.city-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--body);
    text-decoration: none;
    transition: var(--transition);
}

.city-list li a:hover {
    background: rgba(31, 26, 85, 0.07);
    color: var(--primary);
}

.city-list li a.current {
    background: linear-gradient(135deg, rgba(31, 26, 85, 0.08), rgba(229, 57, 53, 0.06));
    color: var(--primary);
    font-weight: 700;
}

.city-list li a i {
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--red);
    transition: var(--transition);
}

.city-list li a.current i {
    color: var(--primary);
}

/* Contact widget */
.contact-widget-inner {
    text-align: center;
    padding: 8px 4px;
}

.contact-widget-icon {
    width: 52px;
    height: 52px;
    background: rgba(31, 26, 85, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 14px;
}

.contact-widget-inner h5 {
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-widget-inner p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.btn-contact-widget {
    display: block;
    background: linear-gradient(135deg, var(--primary), #2d265f);
    color: var(--white) !important;
    font-family: var(--font);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 11px 16px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(31, 26, 85, 0.25);
}

.btn-contact-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(229, 57, 53, 0.35);
    background: linear-gradient(135deg, var(--red), #c62828);
}

/* ═══════════════════════════════════════════
   MAIN CARD
═══════════════════════════════════════════ */
.main-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(31, 26, 85, 0.07);
    overflow: hidden;
}

/* ── HERO ── */
.city-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.city-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.city-hero:hover img {
    transform: scale(1.04);
}

.city-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(31, 26, 85, 0.75) 0%,
            rgba(17, 17, 17, 0.25) 55%,
            transparent 100%);
}

.city-hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(229, 57, 53, 0.92);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.city-hero-title-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 36px;
}

.city-hero-title-block h1 {
    font-family: var(--font);
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* ── CONTENT AREA ── */
.main-card-body {
    padding: 36px 40px 40px;
}

@media(max-width:640px) {
    .main-card-body {
        padding: 22px 18px 28px;
    }

    .city-hero-title-block {
        padding: 18px 20px;
    }
}

/* Short description */
.city-short-desc {
    font-family: var(--font);
    font-size: 0.97rem;
    color: var(--muted);
    border-left: 3px solid var(--red);
    padding: 10px 16px;
    background: rgba(229, 57, 53, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ── CONTENT TYPOGRAPHY ── */
.content {
    font-family: var(--font);
    color: var(--body);
    font-size: 1.05rem;
    line-height: 1.9;
}

.content p {
    margin-bottom: 16px;
    text-align: justify;
}

.content h1,
.content h2,
.content h3 {
    font-family: var(--font);
    margin-top: 2.2rem;
    margin-bottom: 0.75rem;
    scroll-margin-top: 90px;
}

.content h1 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary);
    border-bottom: 2px solid rgba(31, 26, 85, 0.12);
    padding-bottom: 10px;
}

.content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.content h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    background: linear-gradient(to bottom, var(--primary), var(--red));
    border-radius: 2px;
    flex-shrink: 0;
}

.content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--red);
}

.content ul {
    padding-left: 0;
    list-style: none;
}

.content ul li {
    padding: 4px 0 4px 24px;
    position: relative;
}

.content ul li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 13px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

.content ol li::marker {
    color: var(--primary);
    font-weight: 700;
}

.content a {
    color: var(--primary);
    text-underline-offset: 3px;
}

.content a:hover {
    color: var(--red);
}

.content blockquote {
    border-left: 4px solid var(--primary);
    background: rgba(31, 26, 85, 0.05);
    padding: 14px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--primary);
    margin: 20px 0;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font);
    font-size: 0.9rem;
    margin: 20px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.content table thead {
    background: linear-gradient(135deg, var(--primary), #2d265f);
    color: var(--white);
}

.content table thead th {
    padding: 12px 16px;
    font-weight: 600;
}

.content table tbody tr:nth-child(even) {
    background: rgba(31, 26, 85, 0.04);
}

.content table tbody td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(31, 26, 85, 0.07);
}

/* ── DIVIDER ── */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31, 26, 85, 0.15), transparent);
    margin: 36px 0;
}

/* ── GALLERY ── */
.gallery-section {
    margin-top: 40px;
}

.gallery-section-title {
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media(max-width:540px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item::after {
    content: '\F52A';
    font-family: 'Bootstrap Icons';
    position: absolute;
    inset: 0;
    background: rgba(31, 26, 85, 0.6);
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ── FAQ ── */
.faq-section {
    margin-top: 44px;
}

.faq-section-title {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(31, 26, 85, 0.12);
}

.accordion-item {
    border: 1px solid rgba(31, 26, 85, 0.12) !important;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

.accordion-button {
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--body) !important;
    background: var(--white) !important;
    padding: 15px 20px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), #2d265f) !important;
    color: var(--white) !important;
}

.accordion-button::after {
    filter: none;
    opacity: 0.6;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(10);
    opacity: 1;
}

.accordion-body {
    background: rgba(31, 26, 85, 0.03);
    font-size: 0.95rem;
    color: var(--body);
    line-height: 1.75;
    padding: 16px 20px;
}

/* ── META TAGS ROW ── */
.meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.meta-tag {
    background: rgba(31, 26, 85, 0.08);
    color: var(--primary);
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 30, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lbIn 0.3s ease;
}

@keyframes lbIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    background: none;
    border: none;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Reading time badge */
.reading-info {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font);
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.reading-info i {
    color: var(--red);
}

.product-list{

     list-style: none;
        text-decoration: none;
}
}