:root {
    --hupter-primary: #1a1a1a;
    --hupter-primary-text: #ffffff;
    --hupter-accent: #2563eb;
    --hupter-accent-light: #dbeafe;
    --hupter-border: #e5e7eb;
    --hupter-border-strong: #d1d5db;
    --hupter-bg-subtle: #f9fafb;
    --hupter-bg-muted: #f3f4f6;
    --hupter-text: #111827;
    --hupter-text-muted: #6b7280;
    --hupter-text-light: #9ca3af;
    --hupter-success: #16a34a;
    --hupter-success-bg: #f0fdf4;
    --hupter-error: #dc2626;
    --hupter-error-bg: #fef2f2;
    --hupter-overlay-bg: rgba(0, 0, 0, 0.55);
    --hupter-modal-bg: #ffffff;
    --hupter-modal-text: #1a1a1a;
    --hupter-radius: 0.5rem;
    --hupter-radius-lg: 0.75rem;
    --hupter-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --hupter-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hupter-catalog,
.hupter-search,
.hupter-product-detail,
.hupter-availability-widget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--hupter-text);
    line-height: 1.5;
    box-sizing: border-box;
}

.hupter-catalog *,
.hupter-search *,
.hupter-product-detail *,
.hupter-availability-widget * {
    box-sizing: border-box;
}

.hupter-catalog-topbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-end;
    padding: 1rem 1.25rem;
    background: var(--hupter-primary);
    color: var(--hupter-primary-text);
    border-radius: var(--hupter-radius-lg);
    margin-bottom: 1.5rem;
}

.hupter-topbar-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1 1 160px;
    min-width: 140px;
}

.hupter-topbar-group label {
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.hupter-topbar-actions {
    flex-direction: row;
    align-items: flex-end;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.hupter-catalog-topbar .hupter-filter-select,
.hupter-catalog-topbar .hupter-filter-input {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: var(--hupter-radius);
    padding: 0.55em 0.75em;
    font-size: 0.9em;
}

.hupter-catalog-topbar .hupter-filter-select option {
    background: var(--hupter-primary);
    color: #fff;
}

.hupter-catalog-topbar .hupter-filter-select:focus,
.hupter-catalog-topbar .hupter-filter-input:focus {
    outline: 2px solid var(--hupter-accent);
    outline-offset: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.hupter-catalog-topbar .hupter-btn-date-picker {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: var(--hupter-radius);
    padding: 0.55em 0.75em;
    font-size: 0.9em;
    gap: 0.5rem;
}

.hupter-catalog-topbar .hupter-btn-primary {
    background: var(--hupter-accent);
    border-color: var(--hupter-accent);
    color: #fff;
    gap: 0.4rem;
}

.hupter-catalog-topbar .hupter-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    opacity: 0.8;
}

.hupter-catalog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.hupter-catalog-sidebar {
    position: sticky;
    top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--hupter-border);
    border-radius: var(--hupter-radius-lg);
    background: #fff;
    overflow: hidden;
}

.hupter-sidebar-section {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--hupter-border);
}

.hupter-sidebar-section:last-child {
    border-bottom: none;
}

.hupter-sidebar-section h4 {
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hupter-text-muted);
    margin: 0 0 0.5rem;
}

.hupter-sidebar-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.hupter-sidebar-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.3em 0.7em;
    border: 1px solid var(--hupter-border-strong);
    border-radius: 999px;
    font-size: 0.8em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    background: #fff;
    color: var(--hupter-text);
    font-family: inherit;
}

.hupter-sidebar-chip:hover {
    border-color: var(--hupter-accent);
    color: var(--hupter-accent);
    background: var(--hupter-accent-light);
}

.hupter-sidebar-chip.active {
    background: var(--hupter-accent);
    border-color: var(--hupter-accent);
    color: #fff;
}

.hupter-price-range {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hupter-price-sep {
    color: var(--hupter-text-light);
    font-size: 0.85em;
}

.hupter-sidebar-input {
    width: 100%;
    padding: 0.4em 0.6em;
    border: 1px solid var(--hupter-border-strong);
    border-radius: var(--hupter-radius);
    font-family: inherit;
    font-size: 0.85em;
    color: var(--hupter-text);
    background: #fff;
}

.hupter-sidebar-input:focus {
    outline: 2px solid var(--hupter-accent);
    outline-offset: -1px;
    border-color: var(--hupter-accent);
}

.hupter-catalog-main {
    min-width: 0;
}

.hupter-catalog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.hupter-results-count {
    font-size: 0.9em;
    font-weight: 600;
    color: var(--hupter-text-muted);
}

.hupter-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.hupter-card {
    border: 1px solid var(--hupter-border);
    border-radius: var(--hupter-radius-lg);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    background: #fff;
}

.hupter-card:hover {
    box-shadow: var(--hupter-shadow-lg);
    transform: translateY(-3px);
}

.hupter-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--hupter-bg-subtle);
}

.hupter-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hupter-card:hover .hupter-card-image img {
    transform: scale(1.03);
}

.hupter-card-body {
    padding: 1rem;
}

.hupter-card-category {
    display: inline-block;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--hupter-text-light);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hupter-card-title {
    font-size: 1em;
    margin: 0 0 0.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--hupter-text);
}

.hupter-card-rating {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
    font-size: 0.85em;
}

.hupter-star {
    color: var(--hupter-text-light);
    opacity: 0.3;
}

.hupter-star-filled {
    color: #f59e0b;
    opacity: 1;
}

.hupter-rating-value {
    margin-left: 0.25rem;
    color: var(--hupter-text-muted);
    font-size: 0.85em;
}

.hupter-card-price {
    margin-bottom: 0.75rem;
}

.hupter-price-amount {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--hupter-text);
}

.hupter-price-label {
    font-size: 0.8em;
    color: var(--hupter-text-muted);
}

.hupter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55em 1.1em;
    border: 1px solid var(--hupter-border-strong);
    border-radius: var(--hupter-radius);
    font-size: 0.9em;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
    line-height: 1.4;
    background: #fff;
    color: var(--hupter-text);
}

.hupter-btn:hover {
    background: var(--hupter-bg-muted);
}

.hupter-btn-primary {
    background: var(--hupter-primary);
    color: var(--hupter-primary-text);
    border-color: var(--hupter-primary);
}

.hupter-btn-primary:hover {
    opacity: 0.9;
    background: var(--hupter-primary);
}

.hupter-btn-secondary {
    background: transparent;
    border-color: var(--hupter-border-strong);
}

.hupter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hupter-input,
.hupter-select,
.hupter-textarea,
.hupter-filter-input,
.hupter-filter-select {
    width: 100%;
    padding: 0.55em 0.75em;
    border: 1px solid var(--hupter-border-strong);
    border-radius: var(--hupter-radius);
    font-family: inherit;
    font-size: 0.9em;
    color: var(--hupter-text);
    background: #fff;
    line-height: 1.4;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.hupter-input:focus,
.hupter-select:focus,
.hupter-textarea:focus,
.hupter-filter-input:focus,
.hupter-filter-select:focus {
    outline: none;
    border-color: var(--hupter-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.hupter-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hupter-border);
}

.hupter-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5em;
    border: 1px solid var(--hupter-border);
    border-radius: var(--hupter-radius);
    font-size: 0.85em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    background: #fff;
    color: var(--hupter-text);
    font-family: inherit;
}

.hupter-page-btn:hover:not(:disabled):not(.hupter-page-active) {
    background: var(--hupter-bg-muted);
    border-color: var(--hupter-border-strong);
}

.hupter-page-active {
    background: var(--hupter-primary);
    color: var(--hupter-primary-text);
    border-color: var(--hupter-primary);
}

.hupter-page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.hupter-page-dots {
    padding: 0 0.25em;
    color: var(--hupter-text-light);
    font-size: 0.85em;
}

.hupter-product-detail {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hupter-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--hupter-border);
    margin-bottom: 1.5rem;
}

.hupter-detail-photo {
    border-radius: var(--hupter-radius-lg);
    overflow: hidden;
    background: var(--hupter-bg-subtle);
    max-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hupter-detail-photo img {
    width: 100%;
    max-height: 420px;
    display: block;
    object-fit: contain;
}

.hupter-detail-info {
    display: flex;
    flex-direction: column;
}

.hupter-detail-booking {
    width: 100%;
}

.hupter-booking-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hupter-booking-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hupter-step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--hupter-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85em;
    font-weight: 700;
    margin-top: 0.15rem;
}

.hupter-step-content {
    flex: 1;
    min-width: 0;
}

.hupter-step-label {
    display: block;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--hupter-text);
}

.hupter-specs-slider {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--hupter-border);
    border-bottom: 1px solid var(--hupter-border);
    position: relative;
}

.hupter-specs-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    min-width: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hupter-specs-track::-webkit-scrollbar {
    display: none;
}

.hupter-specs-arrow {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hupter-bg-muted);
    border: 1px solid var(--hupter-border-strong);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1em;
    color: var(--hupter-text);
    transition: background 0.15s;
    padding: 0;
    font-family: inherit;
    flex-shrink: 0;
}

.hupter-specs-arrow:hover {
    background: var(--hupter-border);
}

.hupter-spec-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    background: var(--hupter-bg-subtle);
    border-radius: var(--hupter-radius);
    border: 1px solid var(--hupter-border);
    flex-shrink: 0;
    min-width: 140px;
}

.hupter-spec-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: var(--hupter-radius);
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hupter-accent);
}

.hupter-spec-icon svg {
    width: 18px;
    height: 18px;
}

.hupter-spec-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.hupter-spec-label {
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hupter-text-light);
    font-weight: 600;
}

.hupter-spec-value {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--hupter-text);
}

.hupter-product-year {
    font-size: 0.65em;
    font-weight: 400;
    color: var(--hupter-text-light);
    margin-left: 0.35rem;
}

.hupter-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.hupter-product-category {
    display: inline-block;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25em 0.6em;
    border-radius: var(--hupter-radius);
    background: var(--hupter-bg-muted);
    color: var(--hupter-text-muted);
    font-weight: 600;
}

.hupter-product-brand {
    display: block;
    font-size: 0.8em;
    font-weight: 700;
    color: var(--hupter-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.hupter-product-title {
    font-size: 1.5em;
    margin: 0 0 0.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--hupter-text);
}

.hupter-product-price {
    margin-bottom: 1rem;
}

.hupter-product-price .hupter-price-amount {
    font-size: 1.5em;
}

.hupter-product-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--hupter-text-muted);
}

.hupter-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9em;
}

.hupter-badge {
    display: inline-block;
    padding: 0.2em 0.6em;
    border-radius: var(--hupter-radius);
    font-size: 0.75em;
    font-weight: 600;
}

.hupter-badge-ebike {
    background: var(--hupter-success);
    color: #ffffff;
}

.hupter-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--hupter-border-strong);
    border-radius: var(--hupter-radius);
    overflow: hidden;
}

.hupter-qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hupter-bg-subtle);
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--hupter-text);
    transition: background 0.15s;
    font-family: inherit;
    padding: 0;
}

.hupter-qty-btn:hover {
    background: var(--hupter-border);
}

.hupter-qty-value {
    min-width: 48px;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--hupter-text);
    padding: 0 0.5em;
    line-height: 40px;
}

.hupter-persons-config {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hupter-person-block {
    padding: 0.75rem;
    border: 1px solid var(--hupter-border);
    border-radius: var(--hupter-radius);
    background: var(--hupter-bg-subtle);
}

.hupter-person-header {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--hupter-text);
    margin-bottom: 0.5rem;
}

.hupter-person-header:empty {
    display: none;
    margin: 0;
}

.hupter-person-field {
    margin-bottom: 0.5rem;
}

.hupter-person-field:last-child {
    margin-bottom: 0;
}

.hupter-person-field label {
    display: block;
    font-size: 0.8em;
    font-weight: 600;
    color: var(--hupter-text-muted);
    margin-bottom: 0.25rem;
}

.hupter-person-accessories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hupter-size-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.hupter-size-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 36px;
    padding: 0 0.75em;
    border: 2px solid var(--hupter-border-strong);
    border-radius: 999px;
    font-size: 0.85em;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s;
    background: #fff;
    color: var(--hupter-text);
}

.hupter-size-pill.available:hover {
    border-color: var(--hupter-accent);
    color: var(--hupter-accent);
}

.hupter-size-pill.active {
    background: var(--hupter-accent);
    border-color: var(--hupter-accent);
    color: #fff;
}

.hupter-size-pill.exhausted {
    background: var(--hupter-bg-muted);
    border-color: var(--hupter-border);
    color: var(--hupter-text-light);
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.6;
}

.hupter-inline-calendar {
    user-select: none;
    -webkit-user-select: none;
}

.hupter-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.hupter-cal-prev,
.hupter-cal-next {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hupter-bg-muted);
    border: 1px solid var(--hupter-border-strong);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    color: var(--hupter-text);
    transition: background 0.15s;
    padding: 0;
    font-family: inherit;
    flex-shrink: 0;
}

.hupter-cal-prev:hover,
.hupter-cal-next:hover {
    background: var(--hupter-border);
}

.hupter-cal-title {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--hupter-text);
    text-align: center;
    flex: 1;
}

.hupter-cal-months {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hupter-cal-month {
    min-width: 0;
}

.hupter-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75em;
    font-weight: 600;
    color: var(--hupter-text-light);
    margin-bottom: 0.25rem;
}

.hupter-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.hupter-cal-day {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    font-size: 0.85em;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background 0.1s, color 0.1s;
    color: var(--hupter-text);
}

.hupter-cal-day:hover:not(.hupter-cal-disabled):not(.hupter-cal-start):not(.hupter-cal-end) {
    background: var(--hupter-bg-muted);
}

.hupter-cal-empty {
    visibility: hidden;
}

.hupter-cal-disabled {
    color: var(--hupter-border-strong);
    cursor: default;
    text-decoration: line-through;
    opacity: 0.4;
}

.hupter-cal-start,
.hupter-cal-end {
    background: var(--hupter-accent) !important;
    color: #fff !important;
    border-radius: 50%;
    font-weight: 600;
}

.hupter-cal-range {
    background: var(--hupter-accent-light);
    border-radius: 0;
    color: var(--hupter-accent);
}

.hupter-cal-hover-range {
    background: var(--hupter-accent-light);
    border-radius: 0;
    opacity: 0.6;
}

.hupter-selected-dates {
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: var(--hupter-radius);
    font-size: 0.9em;
    color: #0369a1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hupter-date-days {
    font-weight: 600;
    margin-left: auto;
}

.hupter-loading-inline {
    color: var(--hupter-text-muted);
    font-style: italic;
}

.hupter-price-summary {
    padding: 0.75rem 1rem;
    background: var(--hupter-bg-subtle);
    border: 1px solid var(--hupter-border);
    border-radius: var(--hupter-radius);
    margin-bottom: 1rem;
}

.hupter-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.9em;
    color: var(--hupter-text);
}

.hupter-summary-total-row {
    border-top: 1px solid var(--hupter-border-strong);
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    font-size: 1em;
}

.hupter-btn-add-cart {
    width: 100%;
    padding: 0.75em;
    font-size: 1em;
    font-weight: 600;
}

.hupter-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hupter-field-group label {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--hupter-text-muted);
}

.hupter-availability-result {
    padding: 0.75rem 1rem;
    border-radius: var(--hupter-radius);
    margin-bottom: 1rem;
    font-size: 0.9em;
}

.hupter-availability-available {
    border: 1px solid var(--hupter-success);
    color: var(--hupter-success);
    background: var(--hupter-success-bg);
}

.hupter-availability-unavailable {
    border: 1px solid var(--hupter-error);
    color: var(--hupter-error);
    background: var(--hupter-error-bg);
}

.hupter-booking-form-overlay {
    position: fixed;
    inset: 0;
    background: var(--hupter-overlay-bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hupter-booking-form-modal {
    background: var(--hupter-modal-bg);
    color: var(--hupter-modal-text);
    border-radius: var(--hupter-radius-lg);
    padding: 2rem;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.hupter-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--hupter-bg-muted);
    border: 1px solid var(--hupter-border);
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--hupter-text);
    transition: all 0.2s;
    z-index: 1;
}

.hupter-modal-close:hover {
    background: var(--hupter-border);
}

.hupter-booking-form-modal h3 {
    font-size: 1.25em;
    margin: 0 0 1.5rem;
    font-weight: 600;
}

.hupter-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hupter-booking-form .hupter-field-group {
    margin-bottom: 1rem;
}

.hupter-booking-summary {
    padding: 1rem;
    border: 1px solid var(--hupter-border);
    border-radius: var(--hupter-radius);
    margin-bottom: 1.25rem;
    background: var(--hupter-bg-subtle);
}

.hupter-summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.9em;
}

.hupter-form-errors {
    padding: 0.75rem 1rem;
    border: 1px solid var(--hupter-error);
    color: var(--hupter-error);
    background: var(--hupter-error-bg);
    border-radius: var(--hupter-radius);
    margin-bottom: 1rem;
    font-size: 0.9em;
}

.hupter-btn-submit {
    width: 100%;
    padding: 0.75em;
    font-size: 1em;
}

.hupter-form-note {
    text-align: center;
    font-size: 0.8em;
    color: var(--hupter-text-light);
    margin-top: 0.75rem;
}

.hupter-search-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hupter-search-input {
    flex: 1;
}

.hupter-search-results-count {
    font-size: 0.9em;
    color: var(--hupter-text-muted);
    margin-bottom: 1rem;
}

.hupter-widget-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-end;
}

.hupter-widget-title {
    font-size: 1em;
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.hupter-widget-result {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--hupter-radius);
    font-size: 0.9em;
}

.hupter-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    font-size: 0.9em;
    color: var(--hupter-text-muted);
}

.hupter-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--hupter-border);
    border-top-color: var(--hupter-accent);
    border-radius: 50%;
    animation: hupter-spin 0.6s linear infinite;
}

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

.hupter-error {
    color: var(--hupter-error);
    padding: 0.75rem 1rem;
    border: 1px solid var(--hupter-error);
    border-radius: var(--hupter-radius);
    background: var(--hupter-error-bg);
}

.hupter-accessory-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35em 0.75em;
    border: 1px solid var(--hupter-border-strong);
    border-radius: var(--hupter-radius);
    font-size: 0.85em;
    cursor: pointer;
    transition: all 0.15s;
    background: #fff;
    color: var(--hupter-text);
}

.hupter-accessory-item:hover {
    border-color: var(--hupter-text-light);
    background: var(--hupter-bg-subtle);
}

.hupter-accessory-item input[type="checkbox"] {
    accent-color: var(--hupter-accent);
}

.hupter-filter-date-group {
    position: relative;
}

.hupter-btn-date-picker {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hupter-filter-calendar-popover {
    position: fixed;
    z-index: 99990;
    background: #fff;
    border: 1px solid var(--hupter-border-strong);
    border-radius: var(--hupter-radius-lg);
    box-shadow: var(--hupter-shadow-lg);
    padding: 1rem;
    min-width: 500px;
}

.hupter-filter-calendar-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--hupter-border);
}

.hupter-product-detail-overlay {
    position: fixed;
    inset: 0;
    background: var(--hupter-overlay-bg);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.hupter-product-detail-modal {
    background: var(--hupter-modal-bg);
    color: var(--hupter-modal-text);
    border-radius: var(--hupter-radius-lg);
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.hupter-detail-content {
    margin-top: 1rem;
}

.hupter-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--hupter-text-light);
}

@media (max-width: 1024px) {
    .hupter-catalog-layout {
        grid-template-columns: 200px 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hupter-catalog-topbar {
        flex-direction: column;
        border-radius: var(--hupter-radius);
    }

    .hupter-topbar-group {
        flex: 1 1 100%;
    }

    .hupter-catalog-layout {
        grid-template-columns: 1fr;
    }

    .hupter-catalog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .hupter-sidebar-section {
        border-bottom: none;
        border-right: 1px solid var(--hupter-border);
    }

    .hupter-sidebar-section:last-child {
        border-right: none;
    }

    .hupter-detail-header {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .hupter-specs-slider {
        gap: 0.25rem;
    }

    .hupter-filter-calendar-popover {
        min-width: auto;
        width: calc(100vw - 20px);
        left: 10px !important;
        max-width: 500px;
    }

    .hupter-catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

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

    .hupter-search-bar {
        flex-direction: column;
    }

    .hupter-booking-form-modal,
    .hupter-product-detail-modal {
        padding: 1.25rem;
    }

    .hupter-cal-months {
        grid-template-columns: 1fr;
    }

    .hupter-cal-header {
        flex-wrap: wrap;
    }

    .hupter-cal-day {
        height: 32px;
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .hupter-catalog-sidebar {
        grid-template-columns: 1fr 1fr;
    }

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

    .hupter-pagination {
        flex-wrap: wrap;
    }
}
