/* ═══════════════════════════════════════════
   Půjčsinosič.cz — Clean Modern
   ═══════════════════════════════════════════ */

:root {
    --c-black:     #111111;
    --c-black-l:   #1a1a1a;
    --c-coral:     #E05A3A;
    --c-coral-l:   #FDEAE6;
    --c-coral-d:   #c94a2e;
    --c-white:     #ffffff;
    --c-bg:        #f7f7f7;
    --c-card:      #FAFAFA;
    --c-text:      #111111;
    --c-text-m:    #555555;
    --c-text-l:    #717171;
    --c-border:    #eeeeee;
    --c-border-d:  #dddddd;
    --c-red:       #dc2626;
    --c-red-l:     #fef2f2;
    --c-green-l:   #f0fdf4;
    --c-occupied:  #e0e0e0;
    --c-selected:  #E05A3A;
    --c-range:     #FDEAE6;
    --shadow:      0 1px 8px rgba(0,0,0,.04);
    --radius:      10px;
    --font:        'Epilogue', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
body.admin-body .container { max-width: 1500px; }
body.admin-body .header-inner { max-width: 1500px; }

/* ── Header ── */
.header {
    background: var(--c-white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--c-border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 960px;
    margin: 0 auto;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-black);
    text-decoration: none;
    letter-spacing: -0.03em;
}
.logo span { color: var(--c-coral); }
.header-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-phone {
    color: var(--c-black);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: color .15s;
}
.header-phone:hover { color: var(--c-coral); }
.header-price {
    background: var(--c-coral);
    color: var(--c-white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .02em;
}
@media (max-width: 600px) {
    .header-phone { display: none; }
}

/* ── Hero ── */
.hero {
    background: var(--c-black);
    color: var(--c-white);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
}
.hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}
.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.55);
    max-width: 540px;
    margin: 0 auto 24px;
}
.btn-hero {
    background: var(--c-coral);
    color: var(--c-white);
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    transition: all .15s;
}
.btn-hero:hover { background: var(--c-coral-d); transform: translateY(-1px); }

/* ── Intro ── */
.intro-section { padding: 44px 0 0; }
.intro-text {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    color: var(--c-text-m);
    line-height: 1.8;
}

/* ── Product ── */
.product-section { padding: 50px 0; }
.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.section-subtitle {
    text-align: center;
    color: var(--c-text-l);
    margin-bottom: 32px;
}
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
@media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; }
}
.product-desc p { margin-bottom: 14px; line-height: 1.7; }
.connector-notice {
    background: #fffbeb;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 16px;
    font-size: .93rem;
    line-height: 1.6;
}
.product-specs {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    border: 1px solid var(--c-border);
}
.product-specs h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 700;
}
.spec-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.spec-table tr { border-bottom: 1px solid var(--c-border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 9px 4px; }
.spec-table td:first-child { color: var(--c-text-l); width: 50%; }
.spec-hint {
    cursor: help;
    position: relative;
    font-size: .85rem;
}
.spec-hint:hover::after {
    content: attr(title);
    position: absolute;
    left: 50%;
    bottom: 130%;
    transform: translateX(-50%);
    background: var(--c-black);
    color: var(--c-white);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .82rem;
    line-height: 1.5;
    width: 260px;
    white-space: normal;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    pointer-events: none;
}
.spec-hint:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 110%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--c-black);
    z-index: 10;
}

/* ── Workflow ── */
.workflow-section { padding: 44px 0 10px; }
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 8px;
}
@media (max-width: 768px) {
    .workflow-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
    .workflow-steps { grid-template-columns: 1fr; }
}
.wf-step {
    background: var(--c-white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--c-border);
    position: relative;
}
.wf-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-coral);
    color: var(--c-white);
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: 10px;
}
.wf-step h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--c-text);
}
.wf-step p {
    font-size: .88rem;
    color: var(--c-text-m);
    line-height: 1.5;
}

/* ── Product image ── */
.product-image {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--c-white);
}
.product-specs .product-image {
    margin-top: 20px;
    margin-bottom: 0;
}
.product-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
}
.product-image a { display: block; cursor: zoom-in; }
.product-image a:hover img { opacity: .9; transition: opacity .15s; }

/* ── Product video ── */
.product-video {
    margin-top: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.product-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.yt-facade {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
    background: #000;
}
.yt-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .15s;
}
.yt-facade:hover img { opacity: .8; }
.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .15s;
}
.yt-facade:hover .yt-play { transform: translate(-50%, -50%) scale(1.1); }

/* ── Info cards ── */
.info-section { padding: 0 0 50px; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.info-card {
    background: var(--c-white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--c-border);
    border-top: 3px solid var(--c-coral);
    transition: transform .2s, box-shadow .2s;
}
.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.info-card .icon {
    display: none;
}
.info-card h3 {
    font-size: .7rem;
    font-weight: 700;
    color: var(--c-coral);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}
.info-card p { color: var(--c-text-m); font-size: .95rem; line-height: 1.6; }
.info-card p strong { color: var(--c-text); }

/* ── Conditions card ── */
.conditions-card {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    border: 1px solid var(--c-border);
}
.conditions-card h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.conditions-grid h4 {
    font-size: .95rem;
    margin-bottom: 6px;
    color: var(--c-coral);
    font-weight: 700;
}
.conditions-grid p { font-size: .93rem; color: var(--c-text-m); line-height: 1.6; }

/* ── Location ── */
.location-section { padding: 50px 0; }
.location-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .location-cards { grid-template-columns: 1fr; }
}
.location-card {
    background: var(--c-white);
    border-radius: var(--radius);
    padding: 20px 24px;
    border: 1px solid var(--c-border);
    text-align: center;
}
.location-card h3 {
    font-size: .7rem;
    font-weight: 700;
    color: var(--c-coral);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}
.location-card .loc-main {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 2px;
}
.location-card .loc-main a {
    color: var(--c-text);
    text-decoration: none;
}
.location-card .loc-main a:hover { color: var(--c-coral); }
.location-card .loc-sub {
    font-size: .85rem;
    color: var(--c-text-l);
}
.location-map { border-radius: var(--radius); overflow: hidden; }
.location-map iframe { width: 100%; border: none; }

/* ── Booking section ── */
.booking-section {
    padding: 50px 0 60px;
}
.booking-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.booking-subtitle {
    text-align: center;
    color: var(--c-text-l);
    margin-bottom: 32px;
}
.booking-wrap {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
    overflow: hidden;
}
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
}
@media (max-width: 768px) {
    .booking-grid { grid-template-columns: 1fr; }
}

/* ── Calendar ── */
.calendar-panel { padding: 28px; }
.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.cal-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    min-width: 180px;
    text-align: center;
}
.cal-nav {
    background: none;
    border: 1px solid var(--c-border-d);
    width: 36px; height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--c-text-l);
    transition: all .15s;
}
.cal-nav:hover { border-color: var(--c-text); color: var(--c-text); }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cal-dow {
    text-align: center;
    font-size: .75rem;
    font-weight: 700;
    color: var(--c-text-l);
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 4px 0 8px;
}
.cal-day {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    font-size: .9rem;
    cursor: pointer;
    transition: all .15s;
    font-weight: 500;
}
.cal-day:hover:not(.occupied):not(.empty):not(.past) {
    background: var(--c-card);
}
.cal-day.empty { visibility: hidden; }
.cal-day.past { color: #767676; cursor: default; }
.cal-day.today {
    font-weight: 700;
    box-shadow: inset 0 0 0 2px var(--c-black);
}
.cal-day.occupied {
    background: var(--c-occupied);
    color: #bbb;
    cursor: not-allowed;
    text-decoration: line-through;
}
.cal-day.selected {
    background: var(--c-selected);
    color: var(--c-white);
    font-weight: 700;
}
.cal-day.in-range {
    background: var(--c-range);
    color: var(--c-coral);
}

.cal-legend {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    font-size: .8rem;
    color: var(--c-text-l);
}
.cal-legend span {
    display: flex; align-items: center; gap: 6px;
}
.cal-legend .dot {
    width: 12px; height: 12px;
    border-radius: 4px;
    display: inline-block;
}
.dot-free { background: var(--c-white); border: 1px solid var(--c-border-d); }
.dot-occupied { background: var(--c-occupied); }
.dot-selected { background: var(--c-coral); }

/* ── Booking form ── */
.form-panel {
    background: var(--c-card);
    padding: 28px;
    border-left: 1px solid var(--c-border);
}
@media (max-width: 768px) {
    .form-panel { border-left: none; border-top: 1px solid var(--c-border); }
}
.form-panel h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.date-summary {
    background: var(--c-white);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: .9rem;
    line-height: 1.8;
    border: 1px solid var(--c-border);
}
.date-summary > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.date-summary .label { color: var(--c-text-l); }
.date-summary .value { font-weight: 600; text-align: right; }
.date-summary .total {
    font-size: 1.1rem;
    color: var(--c-coral);
    font-weight: 700;
}
.date-summary .jistota {
    font-weight: 700;
}
.date-summary .price-note {
    display: block;
    font-size: .78rem;
    color: var(--c-coral);
    font-style: italic;
    text-align: right;
    margin: -4px 0 4px;
    justify-content: flex-end;
}
.date-summary .divider {
    border: none;
    border-top: 1px dashed var(--c-border);
    margin: 8px 0;
}

/* ── Form elements ── */
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--c-text);
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--c-border-d);
    border-radius: 8px;
    font-size: .95rem;
    font-family: var(--font);
    transition: border-color .15s;
    background: var(--c-white);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--c-coral);
    box-shadow: 0 0 0 3px rgba(224,90,58,.1);
}
.form-group input.error,
.form-group select.error { border-color: var(--c-red); }
.form-group select { cursor: pointer; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
}

.req { color: var(--c-coral); font-weight: 700; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
}
.btn-primary {
    background: var(--c-coral);
    color: var(--c-white);
    width: 100%;
}
.btn-primary:hover { background: var(--c-coral-d); transform: translateY(-1px); }
.btn-primary:disabled {
    background: var(--c-coral);
    opacity: .45;
    color: var(--c-white);
    cursor: not-allowed;
    transform: none;
}

.form-msg {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: .9rem;
    display: none;
}
.form-msg.success { display: block; background: var(--c-green-l); color: #166534; }
.form-msg.error   { display: block; background: var(--c-red-l); color: var(--c-red); }

/* ── GDPR checkbox ── */
.gdpr-check { margin-top: 4px; margin-bottom: 14px; }
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    cursor: pointer;
    line-height: 1.4;
}
.checkbox-wrap {
    flex: 0 0 20px;
    height: 20px;
}
.checkbox-wrap input[type="checkbox"] {
    -webkit-appearance: auto;
    appearance: auto;
    width: 20px;
    height: 20px;
    accent-color: var(--c-coral);
    cursor: pointer;
    margin: 0;
    padding: 0;
    display: block;
}
.checkbox-text {
    flex: 1;
}
.checkbox-label a {
    color: var(--c-text);
    font-weight: 600;
    text-decoration: underline;
}
.checkbox-label a:hover { color: var(--c-coral); }

/* ── GDPR Modal ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--c-white);
    border-radius: var(--radius);
    max-width: 680px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 48px rgba(0,0,0,.2);
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--c-border);
}
.modal-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}
.modal-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--c-text-l);
    line-height: 1;
    padding: 0 4px;
}
.modal-close:hover { color: var(--c-text); }
.modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: .9rem;
    line-height: 1.7;
    color: var(--c-text);
}
.modal-body h4 {
    font-size: 1rem;
    margin: 20px 0 8px;
    color: var(--c-coral);
    font-weight: 700;
}
.modal-body h4:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 8px; }

/* ── Turnstile widget ── */
.cf-turnstile { margin-bottom: 14px; }

/* ── Image Lightbox ── */
.lightbox {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.lightbox-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: var(--c-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    font-size: 1.3rem;
    z-index: 1;
}
.lightbox-close:hover { background: var(--c-card); }

/* ── FAQ Accordion ── */
.faq-section { padding: 50px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--c-white);
    border-radius: var(--radius);
    margin-bottom: 8px;
    border: 1px solid var(--c-border);
    overflow: hidden;
}
.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: .98rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .15s;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--c-text-l);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .2s;
}
.faq-item[open] summary::after {
    content: '−';
    color: var(--c-coral);
}
.faq-item summary:hover { background: var(--c-card); }
.faq-item[open] summary {
    background: var(--c-card);
}
.faq-answer {
    padding: 0 24px 18px;
    font-size: .93rem;
    line-height: 1.7;
    color: var(--c-text-m);
}
.faq-answer p { margin-bottom: 8px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── Footer ── */
.footer {
    background: var(--c-black);
    color: rgba(255,255,255,.75);
    padding: 36px 24px 20px;
    font-size: .88rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto 20px;
}
.footer strong { color: #fff; }
.footer a { color: var(--c-coral); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-legal { line-height: 1.7; }
.footer-copy {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}

/* ── Admin ── */
.admin-login {
    max-width: 380px;
    margin: 80px auto;
    background: var(--c-white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
}
.admin-login h2 {
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.admin-header h2 { font-weight: 700; }

.admin-card {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--c-border);
}
.admin-card h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 700;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
}
.admin-table th, .admin-table td {
    padding: 8px 8px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.admin-table th {
    font-weight: 700;
    color: var(--c-text-l);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}
.admin-table tr:hover td { background: var(--c-card); }

.btn-sm {
    padding: 6px 14px;
    font-size: .8rem;
    border-radius: 6px;
}
.btn-danger { background: var(--c-red); color: var(--c-white); }
.btn-danger:hover { background: #b91c1c; }
.btn-outline {
    background: none;
    border: 1.5px solid var(--c-text);
    color: var(--c-text);
}
.btn-outline:hover { background: var(--c-card); }

.inline-form {
    display: flex;
    gap: 10px;
    align-items: end;
    flex-wrap: wrap;
}
.inline-form .form-group { margin-bottom: 0; }
.inline-form input { padding: 9px 12px; }

.badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
}
.badge-new { background: #fef3c7; color: #92400e; }
.badge-confirmed { background: var(--c-green-l); color: #166534; }
.badge-cancelled { background: var(--c-red-l); color: var(--c-red); }
.badge-completed { background: #dbeafe; color: #1e40af; }

/* Action tag badges for admin */
.act-tag { display:inline-flex;align-items:center;padding:3px 10px;border-radius:12px;font-size:.72rem;font-weight:600;border:1px solid transparent;cursor:pointer;font-family:inherit;text-decoration:none;white-space:nowrap;transition:opacity .15s;min-height:28px; }
.act-tag:hover { opacity:.8; }
.act-edit { background:#f3f4f6;color:#374151;border-color:#d1d5db; }
.act-confirm { background:#d1fae5;color:#065f46;border-color:#6ee7b7; }
.act-resend { background:#dbeafe;color:#1e40af;border-color:#93c5fd; }
.act-proto { background:#fef3c7;color:#92400e;border-color:#fcd34d; }
.act-complete { background:#1e40af;color:#fff; }
.act-cancel { background:#fee2e2;color:#991b1b;border-color:#fca5a5; }
.act-delete { background:#fff;color:#aaa;border-color:#ddd;font-weight:400; }

/* ── No-underline utility (Tailwind fallback) ── */
.no-underline { text-decoration: none; }

/* ── Animations ── */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.fade-in { animation: fadeIn .5s ease both; }
.fade-in-d1 { animation-delay: .1s; }
.fade-in-d2 { animation-delay: .2s; }
.fade-in-d3 { animation-delay: .3s; }

/* ═══════════════════════════════════════════
   Responsive — mobile, tablet, laptop
   ═══════════════════════════════════════════ */

/* Tablet landscape / small laptop */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .hero { padding: 48px 0 40px; }
    .hero h1 { font-size: 2rem; }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .header-inner { padding: 12px 16px; }
    .hero { padding: 40px 0 32px; }
    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: .95rem; }
    .btn-hero { padding: 12px 28px; font-size: .9rem; }

    .info-grid { grid-template-columns: 1fr; }
    .conditions-grid { grid-template-columns: 1fr; }

    .booking-section h2,
    .section-title { font-size: 1.4rem; }

    .form-panel { padding: 20px; }
    .calendar-panel { padding: 20px; }

    .faq-item summary { padding: 14px 18px; font-size: .9rem; }
    .faq-answer { padding: 0 18px 14px; font-size: .88rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 16px; }
    .footer { padding: 28px 20px 16px; }
}

/* Mobile */
@media (max-width: 480px) {
    body { font-size: 1rem; }
    .container { padding: 0 16px; }

    .header-inner { padding: 10px 16px; }
    .logo { font-size: 1.3rem; }
    .header-price { padding: 4px 12px; font-size: .8rem; }

    .hero { padding: 32px 0 28px; }
    .hero h1 { font-size: 1.4rem; }
    .hero p { font-size: .88rem; margin-bottom: 18px; }
    .btn-hero { padding: 11px 24px; font-size: .88rem; }

    .intro-section { padding: 28px 0 0; }
    .intro-text { font-size: .95rem; }

    .product-section { padding: 32px 0; }
    .section-title { font-size: 1.25rem; }
    .product-desc p { font-size: .93rem; }
    .product-specs { padding: 20px; }

    .info-section { padding: 0 0 32px; }
    .info-card { padding: 18px; }

    .booking-section { padding: 32px 0 40px; }
    .booking-section h2 { font-size: 1.3rem; }
    .calendar-panel { padding: 16px; }
    .form-panel { padding: 16px; }
    .cal-day { font-size: .8rem; }

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

    .faq-section { padding: 32px 0; }
    .faq-item summary { padding: 14px 16px; font-size: .88rem; }
    .faq-answer { padding: 0 16px 14px; }

    .location-section { padding: 32px 0; }
    .location-cards { grid-template-columns: 1fr; gap: 8px; }
    .location-card { padding: 16px 20px; }
    #map { height: 260px !important; }

    .conditions-card { padding: 20px; }

    .modal { max-height: 90vh; }
    .modal-body { padding: 16px; }
}
