:root {
    --primary: #ff7a18;
    --primary-dark: #c62828;
    --primary-light: #ff6b6b;
    --accent: #ff7a18;
    --accent-light: #ff9c5a;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-light: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);

    --text: #1f2937;
    --text-light: #6b7280;
    --muted: #6b7280;
    --bg: #ffffff;
    --bg-soft: #f8f6f2;
    --bg-dark: #0f172a;
    --card: #ffffff;
    --border: rgba(17, 24, 39, 0.08);
    --border-light: rgba(229, 57, 53, 0.12);
    --shadow: 0 18px 50px rgba(17, 24, 39, 0.10);
    --shadow-lg: 0 25px 70px rgba(229, 57, 53, 0.15);
    --radius: 24px;
    --radius-sm: 16px;
    --radius-lg: 32px;

    --navbar-height: 88px;
}
html {
    scroll-behavior: smooth;
    background-color: #ffffff;
}

html[data-theme="dark"] {
    scroll-behavior: smooth;
    background-color: #0f172a;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    margin: 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    color: var(--text);
}

a {
    text-decoration: none;
}

.alert-container {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 320px;
    z-index: 1050;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-accent,
.btn-primary {
    background: var(--gradient);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 12px 22px;
    box-shadow: 0 10px 24px rgba(229, 57, 53, 0.22);
    transition: all 0.3s ease;
}

.btn-accent:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #e86d10 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(229, 57, 53, 0.3);
}

.btn-outline-secondary {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
}

.btn-outline-secondary:hover {
    background: rgba(17, 24, 39, 0.05);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-danger {
    background: var(--primary-dark);
    border: 1px solid #dc3545;
    color: white;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
}

.btn-outline-danger:hover {
    background: #dc3545;
    color: #fff;
}

.section-pad {
    padding: 10px 0;
}

.section-title {
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
}

.contact-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form-card .form-control {
    min-height: 56px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) !important;
    padding: 14px 16px !important;
    transition: all 0.3s ease;
}

.contact-form-card textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-form-card .form-control:hover {
    border-color: rgba(229, 57, 53, 0.22);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
}

.contact-form-card .form-control:focus {
    border-color: rgba(229, 57, 53, 0.55) !important;
    box-shadow: 0 0 0 0.2rem rgba(229, 57, 53, 0.12) !important;
    transform: translateY(-2px);
    background: #fff;
}

.contact-form-card .custom-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.72);
    transition: all 0.25s ease;
    cursor: pointer;
    margin-bottom: 12px !important;
}

.contact-form-card .custom-check:hover {
    border-color: rgba(229, 57, 53, 0.3);
    background: rgba(229, 57, 53, 0.05);
}

.contact-form-card .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-form-card .form-check-label {
    margin: 0;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
}

.contact-form-card .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.contact-form-card .form-check-input:checked + .form-check-label {
    color: var(--primary);
}

.contact-form-card #locationInput:disabled {
    background: #f1f5f9;
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .contact-form-card .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
/* RADIO CARD STYLE */
.radio-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.7);
}

.radio-card input {
    accent-color: var(--primary);
    cursor: pointer;
}

.radio-card:hover {
    border-color: var(--primary);
    background: rgba(229, 57, 53, 0.05);
}

/* ACTIVE STATE */
.radio-card input:checked + span {
    color: var(--primary);
}

/* DARK MODE */
html[data-theme="dark"] .radio-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

html[data-theme="dark"] .radio-card:hover {
    background: rgba(255, 122, 24, 0.12);
    border-color: rgba(255, 122, 24, 0.25);
}.flatpickr-calendar {
     border: 1px solid var(--border);
     border-radius: var(--radius-sm);
     box-shadow: var(--shadow);
     font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
 }

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--primary);
    border-color: var(--primary);
}

.flatpickr-day.today {
    border-color: var(--accent);
}

html[data-theme="dark"] .flatpickr-calendar {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .flatpickr-months .flatpickr-month,
html[data-theme="dark"] .flatpickr-current-month .flatpickr-monthDropdown-months,
html[data-theme="dark"] .flatpickr-current-month input.cur-year,
html[data-theme="dark"] .flatpickr-weekdays,
html[data-theme="dark"] .flatpickr-weekday,
html[data-theme="dark"] .flatpickr-day,
html[data-theme="dark"] .flatpickr-time input,
html[data-theme="dark"] .flatpickr-time .flatpickr-am-pm {
    color: #f3f4f6;
    background: transparent;
}

html[data-theme="dark"] .flatpickr-day:hover {
    background: rgba(255, 122, 24, 0.12);
    border-color: rgba(255, 122, 24, 0.22);
}

html[data-theme="dark"] .flatpickr-day.selected,
html[data-theme="dark"] .flatpickr-day.startRange,
html[data-theme="dark"] .flatpickr-day.endRange {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

html[data-theme="dark"] .flatpickr-time input:hover,
html[data-theme="dark"] .flatpickr-time .flatpickr-am-pm:hover {
    background: rgba(255, 255, 255, 0.06);
}
/* Modern Info Panels */
.info-modern {
    background: linear-gradient(135deg, #fff 0%, #fff9f5 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.info-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,100 L1000,0 L1000,100 Z" fill="white" opacity="0.05"/></svg>');
    background-size: cover;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: var(--primary);
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

/* Forms */
input,
textarea {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) !important;
    padding: 14px 16px !important;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    border-color: rgba(229, 57, 53, 0.55) !important;
    box-shadow: 0 0 0 0.2rem rgba(229, 57, 53, 0.12) !important;
    transform: translateY(-2px);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

.content-card,
.info-card,
.form-card {
    padding: 1.5rem;
}

.custom-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: black;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.08);
    color: black;
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.15);
}

.empty-state {
    padding: 3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}

.detail-info {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
    color: var(--text);
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(229, 57, 53, 0.08);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: normal;
    word-break: break-word;
}

.text-muted {
    color: var(--muted) !important;
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.items-page .card-modern {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
    display: flex;
    flex-direction: column;
    height: auto;
}

#item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(255, 122, 24, 0.25);
    border-color: var(--accent);
    background: linear-gradient(
            180deg,
            #ffffff 70%,
            rgba(255, 122, 24, 0.05)
    );
}

.items-page .card-modern .card-image,
.items-page .card-image {
    width: 100%;
    height: 300px;
    scale: 1;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.items-page .card-modern:hover .card-image {
    transform: scale(1.04);
}

.items-page .card-content {
    padding: 14px 10px 10px;
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
    align-items: center;
}

.items-page .card-title {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--text);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.items-page .card-meta {
    color: var(--muted);
    font-size: 0.6rem;
    margin-bottom: 0;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.items-page .card-price {
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

.items-page .card-price .price-value {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 900;
}

#items-card-price {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.9rem;
}

.item-detail-page .container {
    max-width: 1240px;
}

.item-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.item-detail-main,
.item-detail-aside {
    min-width: 0;
}

.item-detail-panel {
    padding: 28px;
}

.item-detail-media .card-modern {
    border-radius: 24px;
}

.item-detail-media img,
.item-detail-modal-image,
.item-image-modal-preview {
    width: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.item-detail-summary {
    position: sticky;
    top: 110px;
    border-radius: 24px;
}

.item-detail-summary-title {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    word-break: break-word;
}

.item-detail-summary-price {
    font-size: 1.6rem;
    line-height: 1.1;
}

.item-detail-actions form {
    width: 100%;
}

.item-detail-copy,
.item-detail-copy p,
.item-detail-panel .text-muted,
.item-detail-panel h1,
.item-detail-panel h2,
.item-detail-panel h3,
.item-detail-panel h4,
.item-detail-panel h5,
.item-detail-panel h6 {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.item-detail-page .card-modern {
    width: 100%;
    min-width: 0;
}

.items-page .item-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.items-page .item-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.items-page .item-card-link .card-modern {
    height: 100%;
    cursor: pointer;
}

.item-detail-page .table-responsive {
    overflow-x: auto;
}

.item-detail-page table {
    width: 100%;
}

.item-detail-page .row {
    --bs-gutter-x: 1rem;
}

@media (max-width: 991px) {
    .item-detail-shell {
        grid-template-columns: 1fr;
    }

    .item-detail-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .item-detail-panel,
    .item-detail-summary .card-content {
        padding: 20px;
    }

    .item-detail-summary-title {
        font-size: 1.2rem;
    }

    .item-detail-summary-price,
    .item-detail-page .card-price {
        font-size: 1.35rem;
    }
}

.items-page .card-modern .btn {
    padding: 8px;
    font-size: 0.7rem;
    min-height: 32px;
    font-weight: bold;
    width: fit-content;
    align-self: center;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.item-detail-image .card-image {
    height: 280px !important;
    object-fit: cover;
}

.item-detail-modal-image {
    width: 100%;
    height: auto;
    display: block;
}

.item-detail-page .info-modern {
    padding: 32px;
}

.item-detail-page .card-price {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.item-detail-page .card-content {
    padding: 18px;
    gap: 10px;
}

.item-detail-page .card-modern .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    min-height: 42px;
}

/* Modern content blocks */
.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 1.3rem;
}

.stats-section {
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    padding-top: 60px;
    padding-bottom: 60px;
}

.stats-title {
    color: var(--text);
}

.stats-subtitle {
    color: var(--muted);
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 32px rgba(17, 24, 39, 0.10);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1.1;
    word-break: break-word;
}

.stat-label {
    color: var(--muted);
    font-size: 1.2rem;
    line-height: 1.35;
}

.party-banner {
    padding: 40px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.10), rgba(255, 122, 24, 0.12)), #ffffff;
    border: 1px solid rgba(229, 57, 53, 0.12);
    box-shadow: var(--shadow);
}

.teaser-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
}

.teaser-banner {
    position: relative;
    height: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    color: white;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

.teaser-banner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.teaser-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.teaser-content {
    position: relative;
    z-index: 2;
}

.teaser-content h4 {
    font-weight: 800;
    margin-bottom: 10px;
}

.teaser-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.teaser-eventagentur {
    background-image: url('https://images.unsplash.com/photo-1505236858219-8359eb29e329?q=80&w=1200');
}

.teaser-foto {
    background-image: url('https://images.unsplash.com/photo-1492724441997-5dc865305da7?q=80&w=1200');
}

.teaser-miet {
    background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?q=80&w=1200');
}

/* Category page cards */
.event-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 55px rgba(17, 24, 39, 0.14);
    border-color: rgba(229, 57, 53, 0.18);
}

.event-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e5e7eb;
}

.event-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.event-card:hover .event-card-image {
    transform: scale(1.08);
}

.event-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.04) 0%,
            rgba(15, 23, 42, 0.12) 45%,
            rgba(15, 23, 42, 0.38) 100%
    );
}

.event-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.event-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
    padding: 22px;
}

.event-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
}

.event-card-title a {
    color: var(--text);
    text-decoration: none;
}

.event-card-title a:hover {
    color: var(--primary);
}

.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.event-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.04);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.event-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.event-card-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-card-price-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.event-card-price {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--primary);
}

.event-card-btn {
    width: 100%;
    min-height: 48px;
}

.category-header .section-subtitle {
    margin: 0;
    max-width: none;
    text-align: left;
}

.item-image-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
}

.item-image-trigger:focus {
    outline: none;
}

.item-detail-modal-image {
    display: block;
    width: 100%;
}

.item-image-modal-content {
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
}

.item-image-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    background: transparent;
}

.item-image-modal-body {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020617;
}

.item-image-modal-preview {
    display: block;
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-collapse {
        padding-top: 1rem;
    }

    .navbar-nav .btn-outline-secondary,
    .navbar-nav .btn-primary,
    .navbar-nav .btn-accent {
        width: 100%;
    }

    .navbar-nav {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
    }

    .navbar-nav .btn-outline-secondary,
    .navbar-nav .btn-primary,
    .navbar-nav .btn-accent {
        width: 100%;
        justify-content: center;
    }

    .sticky-top {
        position: static !important;
        top: auto !important;
    }

    .section-pad {
        padding: 56px 0;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .card-modern .card-image,
    .item-detail-image .card-image {
        height: 130px;
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 48px 0;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .card-modern .card-image,
    .item-detail-image .card-image {
        height: 120px;
    }

    .info-modern,
    .btn-primary,
    .btn-accent,
    .btn-outline-secondary,
    .btn-outline-danger {
        width: 100%;
    }

    .form-control,
    .form-select,
    textarea {
        font-size: 16px;
    }

    .info-modern form .btn {
        width: 100%;
    }

    .event-card {
        border-radius: 20px;
    }

    .event-card-body {
        padding: 18px;
    }

    .event-card-title {
        font-size: 1.05rem;
    }

    .event-card-price {
        font-size: 1.3rem;
    }
}

.items-category-section {
    scroll-margin-top: 120px;
    margin-bottom: 48px;
}

.items-category-header {
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.items-category-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
}

.items-sidebar-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    background: transparent;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.items-sidebar-link:hover {
    background: rgba(17, 24, 39, 0.04);
    border-color: var(--border);
    color: var(--primary);
}

.items-sidebar-link.active {
    background: rgba(229, 57, 53, 0.08);
    border-color: rgba(229, 57, 53, 0.14);
    color: var(--primary);
}

.items-category-section {
    scroll-margin-top: 120px;
    margin-bottom: 160px;
}

.items-category-hero {
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 20px;
}

.items-category-hero .row {
    height: auto;
}

.items-category-hero-image {
    max-height: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.items-category-hero-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.04);
    color: var(--muted);
    font-weight: 600;
    min-height: 380px;
}

.items-category-hero-content {
    height: 100%;
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.items-category-title {
    margin: 0 0 18px;
    font-size: 2.1rem;
    line-height: 1.1;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.03em;
}

.items-category-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .items-category-section {
        margin-bottom: 56px;
    }

    .items-category-hero,
    .items-category-hero .row,
    .items-category-hero-image,
    .items-category-hero-image-placeholder {
        min-height: auto;
    }

    .items-category-hero-image,
    .items-category-hero-image-placeholder {
        height: 280px;
    }

    .items-category-hero-content {
        padding: 28px 24px;
    }

    .items-category-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .items-category-hero-image,
    .items-category-hero-image-placeholder {
        height: 220px;
    }

    .items-category-title {
        font-size: 1.45rem;
    }

    .items-category-description {
        font-size: 0.98rem;
        line-height: 1.65;
    }
}

h3 + p {
    font-weight: 700;
}

.items-sidebar {
    position: sticky;
    top: calc(var(--navbar-height) + 24px);
    align-self: start;
}

.items-sidebar.card-modern {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    height: auto;
    min-height: unset;
}

.items-sidebar-inner {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 242, 0.96));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
    padding: 20px;
}

.items-sidebar-title {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(229, 57, 53, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.items-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.items-sidebar-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.04);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.35;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.items-sidebar-link:hover {
    transform: translateX(4px);
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.08), rgba(255, 122, 24, 0.10));
    border-color: rgba(229, 57, 53, 0.18);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
    color: var(--text);
}

.items-sidebar-link:hover::after {
    transform: translateX(3px);
    opacity: 0.9;
}

.items-sidebar-link.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 16px 32px rgba(229, 57, 53, 0.22);
}

.items-sidebar-link.active::after {
    opacity: 1;
}

@media (max-width: 992px) {
    .items-sidebar {
        position: relative;
        top: auto;
    }

    .items-sidebar-inner {
        padding: 16px;
    }

    .items-sidebar-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .items-sidebar-link {
        width: auto;
        flex: 0 0 auto;
        border-radius: 999px;
        padding: 10px 14px;
    }

    .items-sidebar-link::after {
        display: none;
    }
}

/* ========================
   ITEMS SIDEBAR - DARK
======================== */

html[data-theme="dark"] .items-sidebar-inner {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* LABEL */
html[data-theme="dark"] .items-sidebar-title {
    background: rgba(229, 57, 53, 0.14);
    color: #ff9c8f;
}

/* LINKS */
html[data-theme="dark"] .items-sidebar-link {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    box-shadow: none;
}

/* ARROW */
html[data-theme="dark"] .items-sidebar-link::after {
    color: rgba(255, 255, 255, 0.6);
}

/* HOVER */
html[data-theme="dark"] .items-sidebar-link:hover {
    background: linear-gradient(
            135deg,
            rgba(229, 57, 53, 0.12),
            rgba(255, 122, 24, 0.12)
    );
    border-color: rgba(255, 122, 24, 0.22);
    color: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .items-sidebar-link:hover::after {
    opacity: 1;
    color: #fff;
}

/* ACTIVE */
html[data-theme="dark"] .items-sidebar-link.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 16px 32px rgba(229, 57, 53, 0.35);
}

html[data-theme="dark"] .items-sidebar-link.active::after {
    opacity: 1;
    color: #fff;
}
.category-block-hero {
    padding: 16px;
    border-radius: var(--radius-sm);
    background: #fff !important;
}

.category-block-image,
.category-block-image-placeholder {
    background: #fff !important;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.category-block-description {
    background: #fff !important;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: none;
}
html[data-theme="dark"] .category-block-hero {
    background: #111827 !important;
}

html[data-theme="dark"] .category-block-image {
    background: #1f2937 !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

html[data-theme="dark"] .category-block-description {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
