/* =============================================================================
   TABLEX WIDGET v3.0 - Accordion Design
   ============================================================================= */

/* =============================================================================
   CSS VARIABLES
   ============================================================================= */
:root {
    --color-primary: #5C1A37;
    --color-primary-hover: #4A1229;
    --p:    var(--color-primary);
    --ph:   var(--color-primary-hover);
    --t:    #2C2C2C;
    --tm:   #888888;
    --td:   #B8AFA5;
    --bg:   #EDE8DF;
    --bg-cell: #FFFFFF;
    --sf:   #F5F1EB;
    --bd:   #D8D0C4;
    --divider: #DEDAD3;
    --err:  #C00000;
    --ok:   #5C1A37;
    --f:    'Inter', system-ui, sans-serif;
    --fs:   16px;
    --fss:  14px;
    --fsx:  12px;
    --r:    6px;
    --h:    44px;
    --s:    200ms;
    --gap:  16px;
    --gap-sm: 8px;
    --bottom-h: 60px;
    --icon-size: 18px;
    --accordion-speed: 250ms;
}

/* =============================================================================
   RESET & BASE
   ============================================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    font: var(--fs)/1.5 var(--f);
    color: var(--t);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: 0;
}

a { color: var(--p); text-decoration: none; }
a:hover { color: var(--ph); }

form#bucket { display: none; }

/* =============================================================================
   WIDGET WRAPPER
   ============================================================================= */
.widget-v3 {
    position: relative;
    width: 100%;
    background: var(--bg);
}

/* =============================================================================
   ACCORDION / STEPS
   ============================================================================= */
.steps-wrapper {
    width: 100%;
    background: var(--bg);
}

.step {
    width: 100%;
    border-bottom: 1px solid var(--divider);
    overflow: hidden;
}

.step:first-child {
    border-top: 1px solid var(--divider);
}

/* Step Header */
.step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    cursor: pointer;
    user-select: none;
    transition: background var(--s);
    min-height: 52px;
}

.step-header:hover {
    background: rgba(0,0,0,0.025);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--t);
    opacity: 0.7;
}

.step-icon svg {
    width: var(--icon-size);
    height: var(--icon-size);
}

.step-label {
    flex: 1;
    font-size: var(--fs);
    font-weight: 400;
    color: var(--t);
}

.step-value {
    font-size: var(--fs);
    font-weight: 400;
    color: var(--t);
    display: none;
}

/* Show value instead of label when step has a value */
.step.has-value .step-label {
    display: none;
}

.step.has-value .step-value {
    display: block;
}

/* When step is open, always show label (even if has value) */
.step.open .step-label {
    display: block;
}

.step.open .step-value {
    display: none;
}

/* Step Content — visibility managed by jQuery slideDown/slideUp */
.step-content {
    display: none;
    padding: 0 16px 16px;
    overflow: hidden;
}

/* Info / Warning message inside a step */
.step-message {
    margin-top: var(--gap-sm);
    padding: 10px 14px;
    font-size: var(--fss);
    color: var(--tm);
    background: var(--sf);
    border-radius: var(--r);
}

.step-message:empty {
    display: none !important;
}

/* =============================================================================
   MONTH NAVIGATION (V3: Year above, Month below, 3 visible)
   ============================================================================= */
.month-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--gap);
}

.month-buttons-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex: 1;
}

.month-button {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 60px;
    padding: 6px 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--f);
    transition: all var(--s);
}

.month-button.show,
.month-button:not(.hide-month) {
    display: flex !important;
}

.month-button .m-btn_year {
    font-size: var(--fsx);
    color: var(--tm);
    font-weight: 400;
    line-height: 1.2;
}

.month-button .m-btn_month {
    font: 600 var(--fss) var(--f);
    text-transform: uppercase;
    color: var(--t);
    line-height: 1.2;
}

.month-button.m-active .m-btn_year {
    color: var(--tm);
}

.month-button.m-active .m-btn_month {
    color: var(--t);
    text-decoration: underline;
    text-decoration-color: var(--t);
    text-underline-offset: 3px;
}

.month-button.hide-month { display: none; }

/* Month nav arrows */
.remmonth,
.addmonth {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--t);
    transition: opacity var(--s);
    opacity: 0.6;
}

.remmonth:hover:not(.hide-arrow),
.addmonth:hover:not(.hide-arrow) {
    opacity: 1;
}

.remmonth svg, .addmonth svg {
    width: 16px;
    height: 16px;
}

.hide-arrow {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.show-arrow {
    opacity: 0.6;
    cursor: pointer;
    pointer-events: auto;
}

/* =============================================================================
   CALENDAR GRID
   ============================================================================= */
.cal-container {
    padding: 0;
    position: relative;
}

.cal {
    display: none;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-start;
    align-items: center;
}

.cal.show { display: flex; }

.cal .wd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(14.28% - 4px);
    min-height: 36px;
    font: 400 var(--fsx) var(--f);
    color: var(--tm);
}

.cal .day,
.cal .placebo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(14.28% - 4px);
    min-height: 40px;
    font-size: var(--fs);
    background: var(--bg-cell);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    transition: all var(--s);
}

.cal .placebo {
    visibility: hidden;
    background: transparent;
    border-color: transparent;
}

.cal .day:not(.d-active) {
    color: var(--td);
    background: var(--bg-cell);
    cursor: not-allowed;
}

.cal .d-active {
    color: var(--t);
    cursor: pointer;
}

.cal .d-active:hover {
    border-color: var(--t);
}

.cal .d-today {
    font-weight: 600;
    border-color: var(--t);
    border-width: 2px;
}

.cal .d-selected {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
    font-weight: 600;
}

.cal .booked-message,
#watch .booked-message {
    width: 100%;
    padding: 20px;
    margin-top: var(--gap);
    text-align: center;
    background: var(--sf);
    border-radius: var(--r);
    font-size: var(--fss);
    color: var(--tm);
}

.cal .booked-message:empty,
#watch .booked-message:empty {
    display: none !important;
}

/* =============================================================================
   PAX BUTTON GRID
   ============================================================================= */
.pax-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 6px;
    margin-bottom: var(--gap-sm);
}

@media (max-width: 479px) {
    .pax-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.pax-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    font: 400 var(--fs) var(--f);
    color: var(--t);
    background: var(--bg-cell);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    cursor: pointer;
    transition: all var(--s);
}

.pax-btn:hover {
    border-color: var(--t);
}

.pax-btn.selected {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
    font-weight: 600;
}

/* =============================================================================
   DURATION TILE GRID
   ============================================================================= */
.duration-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dur-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: calc(16.66% - 6px);
    height: 44px;
    font: 400 var(--fs) var(--f);
    color: var(--t);
    background: var(--bg-cell);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    cursor: pointer;
    transition: all var(--s);
    white-space: nowrap;
}

.dur-tile:hover {
    border-color: var(--t);
}

.dur-tile.selected {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
    font-weight: 600;
}

.dur-tile.disabled {
    color: var(--td);
    cursor: not-allowed;
    opacity: 0.5;
}

@media (max-width: 380px) {
    .dur-tile {
        min-width: calc(25% - 6px);
    }
}

/* =============================================================================
   TIME SLOTS (WATCH)
   ============================================================================= */

/* #watch is the flat flex container for ALL visible quarters */
#watch {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* Hidden by default; JS adds h-day-active to show */
#watch .hour {
    display: none;
}

/* display:contents makes the hour div "transparent":
   its quarter children participate in #watch's flex grid directly */
#watch .h-day-active {
    display: contents;
}

/* Group headings span a full row (force line break) */
#watch .time-group-label {
    flex: 0 0 100%;
    font-size: var(--fss);
    font-weight: 500;
    color: var(--t);
    margin-top: var(--gap-sm);
    padding-top: 2px;
}

#watch .time-group-label:first-child {
    margin-top: 0;
}

/* Quarters: 8 per row on desktop */
#watch .quarter {
    flex: 0 0 calc(12.5% - 4px);
    min-width: 0;
    display: none;
    align-items: center;
    justify-content: center;
    height: var(--h);
    font-size: var(--fss);
    background: var(--bg-cell);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    cursor: pointer;
    transition: all var(--s);
    user-select: none;
}

#watch .q-active {
    display: flex;
}

/* Mobile: 4 per row */
@media (max-width: 479px) {
    #watch .quarter {
        flex: 0 0 calc(25% - 4px);
    }
}

#watch .quarter:hover {
    border-color: var(--t);
}

#watch .quarter.selected {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
    font-weight: 600;
}

#watch .hour ._00 > div::before,
#watch .hour ._15 > div::before,
#watch .hour ._30 > div::before,
#watch .hour ._45 > div::before { content: attr(data-hour); }

#watch .hour ._00 > div::after { content: ':00'; }
#watch .hour ._15 > div::after { content: ':15'; }
#watch .hour ._30 > div::after { content: ':30'; }
#watch .hour ._45 > div::after { content: ':45'; }

.watch-information-text {
    text-align: center;
    margin-bottom: var(--gap-sm);
    color: var(--tm);
    font-size: var(--fss);
}

.watch-information-text:empty { display: none !important; }

/* =============================================================================
   FIXED BOTTOM BAR
   ============================================================================= */
.bottom-bar {
    width: 100%;
    height: var(--bottom-h);
    background: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-reservieren {
    width: 100%;
    height: 100%;
    font: 400 var(--fs) var(--f);
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background var(--s);
}

.btn-reservieren:hover {
    background: rgba(255,255,255,0.08);
}

/* =============================================================================
   FORM VIEW
   ============================================================================= */
.form-view {
    width: 100%;
    padding-bottom: calc(var(--bottom-h) + 16px); /* space for fixed submit bar */
}

/* Summary Card */
.summary-card {
    background: var(--bg-cell);
    border-radius: var(--r);
    padding: 20px;
    margin: 16px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.summary-card__title {
    font-size: var(--fss);
    color: var(--tm);
    margin: 0 0 12px;
    font-weight: 400;
}

.summary-card__info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 14px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--fss);
    color: var(--t);
}

.summary-item svg {
    width: 15px;
    height: 15px;
    color: var(--tm);
    flex-shrink: 0;
}

.btn-change {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 20px;
    font: 400 var(--fss) var(--f);
    color: var(--t);
    background: var(--bg-cell);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    cursor: pointer;
    transition: all var(--s);
}

.btn-change:hover {
    border-color: var(--t);
}

/* Form heading */
.form-heading {
    font-size: var(--fs);
    font-weight: 500;
    color: var(--t);
    margin: 0 0 12px;
    padding: 0 16px;
}

/* Form wrapper */
#grid-wrapper {
    width: 100%;
    padding: 0 16px;
    margin-bottom: var(--gap);
}

/* Field wrappers - V3 style (placeholder-based) */
.field-wrapper {
    display: flex;
    align-items: center;
    min-height: var(--h);
    margin-bottom: 6px;
    background: var(--bg-cell);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color var(--s);
}

.field-wrapper:focus-within {
    border-color: #aaa;
}

.field-wrapper.issues {
    border-color: var(--err);
}

/* V3: no visible label in default/select wrappers */
#grid-wrapper .default-wrapper label,
#grid-wrapper .select-wrapper label
 {
    display: none;
}

#grid-wrapper .default-wrapper input,
#grid-wrapper .select-wrapper select,
#grid-wrapper .textarea-wrapper textarea {
    width: 100%;
    flex: 1;
    min-width: 0;
    height: var(--h);
    padding: 0 14px;
    font: 400 var(--fs) var(--f);
    color: var(--t);
    background: transparent;
    border: none;
    outline: none;
}

#grid-wrapper .default-wrapper input::placeholder,
#grid-wrapper .textarea-wrapper textarea::placeholder {
    color: var(--tm);
    font-weight: 400;
}

#grid-wrapper .select-wrapper select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    color: var(--tm);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
    padding-right: 32px;
}

#grid-wrapper .select-wrapper select:not([value=""]):valid,
#grid-wrapper .select-wrapper select.has-value {
    color: var(--t);
}

#grid-wrapper .textarea-wrapper {
    align-items: flex-start;
    min-height: 120px;
}

#grid-wrapper .textarea-wrapper textarea {
    height: 120px;
    padding: 12px 14px;
    resize: vertical;
    font: 400 var(--fs) var(--f);
}

/* Checkboxes */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--p);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-wrapper {
    padding: 12px 14px;
    gap: 10px;
    background: transparent;
    border: none;
    border-radius: 0;
    min-height: auto;
}

.checkbox-wrapper label {
    display: block !important;
    flex: 1;
    width: auto !important;
    padding: 0 !important;
    font-size: var(--fss);
    cursor: pointer;
    color: var(--t);
}

/* Mandatory marker */
#grid-wrapper .field-wrapper label.mandatory::after {
    content: ' *';
    color: var(--err);
}

/* International Telephone Input */
.iti { flex: 1; }
.iti__flag-container { padding-top: 0; }
.iti__selected-flag { padding: 0 8px; background: transparent; }
.iti__country-list {
    border: 1px solid var(--bd);
    border-radius: var(--r);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    background: var(--bg-cell);
}
.iti__country.iti__highlight { background: var(--sf); }

#txfe_telefon { width: 100%; }

/* AGB Text */
#Labeltxfe_confirmAGB {
    display: block;
    margin: var(--gap) 16px;
    font-size: var(--fsx);
    color: var(--tm);
    line-height: 1.5;
}

#Labeltxfe_confirmAGB a { color: var(--p); }

/* Payment info */
#payment_information_comment,
#payment_additional_information {
    margin: var(--gap-sm) 0;
    font-size: var(--fss);
    color: var(--tm);
}

#payment_information_comment:empty,
#payment_additional_information:empty { display: none !important; }

/* Form submit button (wine bar at bottom of form) */
.form-submit-bar {
	/*
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    height: var(--bottom-h);
    background: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
	*/
	width: 100%;
  height: var(--bottom-h);
  background: var(--p);
  display: flex;
  align-items: center;
  justify-content: center;
}

#sendButton {
    width: 100%;
    height: 100%;
    font: 400 var(--fs) var(--f);
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background var(--s);
}

#sendButton:hover {
    background: rgba(255,255,255,0.08);
}

/* Payment Form (Saferpay) */
.wpwl-form { margin: 0 auto; }

.wpwl-container-card {
    margin: var(--gap) 0;
    padding: 16px;
    background: var(--sf);
    border: 1px solid var(--bd);
    border-radius: var(--r);
}

.wpwl-label {
    font-size: var(--fss);
    color: var(--tm);
    margin-bottom: 4px;
}

.wpwl-wrapper { padding: 0; }
.wpwl-wrapper-submit, .wpwl-group-brand, .wpwl-group-submit { display: none; }
.cc-issues { border: 2px solid var(--err) !important; }

form#paymentForm {
    display: none;
    padding: 0 16px;
}

form#paymentForm > div.default-wrapper {
    padding: 8px;
    border: 1px solid var(--bd);
    background: var(--sf);
    margin-bottom: 6px;
    border-radius: var(--r);
}

form#paymentForm > div.default-wrapper > label { font-size: var(--fss); display: block !important; }
form#paymentForm > div.issues > label { color: var(--err); }
form#paymentForm > div.default-wrapper > div.placeholder { height: 30px; }

iframe#saferpay-iframe {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 500px;
    height: 90vh;
    border: none;
    display: none;
    z-index: 1000;
    background: var(--bg-cell);
    border-radius: var(--r);
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

/* =============================================================================
   CONFIRMED / STORNO
   ============================================================================= */
.confirmed-view {
    padding: 32px 16px;
    text-align: center;
}

.tx_confirmed_container {
    padding: 24px 16px;
    background: var(--sf);
    border-radius: var(--r);
    margin-bottom: var(--gap);
}

.tx_confirmed_container.pending,
.tx_confirmed_container.confirmed { display: none; }

.tx_confirmed_heading {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--p);
    margin-bottom: var(--gap);
}

.tx_confirmed_message {
    color: var(--tm);
    line-height: 1.6;
}

#repeatButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--h);
    padding: 0 32px;
    font: 400 var(--fs) var(--f);
    color: #fff;
    background: var(--p);
    border: none;
    border-radius: var(--r);
    cursor: pointer;
    transition: background var(--s);
    margin-top: var(--gap);
}

#repeatButton:hover { background: var(--ph); }

.StornoouterDiv {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
    padding: 16px;
}

.StornoinnerDiv {
    max-width: 400px;
    width: 100%;
    padding: 32px;
    text-align: center;
    color: #fff;
    background: var(--p);
    border-radius: var(--r);
}

#stornomessage {
    font-size: 1.4em;
    padding: 24px 0;
}

.stornoButton {
    height: 52px;
    padding: 0 32px;
    font: 400 var(--fs) var(--f);
    color: #fff;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--r);
    cursor: pointer;
    transition: all var(--s);
}

.stornoButton:hover {
    background: rgba(255,255,255,0.35);
    border-color: #fff;
}

/* =============================================================================
   ALERT & SPINNER
   ============================================================================= */
.custom-alert {
    position: fixed;
    inset: 0;
    text-align: center;
    display: none;
    background: rgba(0,0,0,.45);
    z-index: 1000;
}

.custom-alert > .alert-window {
    position: relative;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    padding: 32px;
    max-width: 85%;
    background: var(--bg-cell);
    border-radius: var(--r);
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.custom-alert > .alert-window > .closer {
    position: absolute;
    right: 14px;
    top: 14px;
    padding: 0;
    font-size: 22px;
    line-height: 1;
    background: none;
    border: none;
    opacity: .4;
    cursor: pointer;
    transition: opacity var(--s);
}

.custom-alert > .alert-window > .closer:hover { opacity: 1; }

.spinner {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.spinner.active { display: flex; }

.spinner svg {
    width: 48px;
    height: 48px;
    color: var(--p);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =============================================================================
   LANGUAGE SWITCHER
   ============================================================================= */
.language-select {
    display: inline-block;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 200;
    cursor: pointer;
}

.selected-language {
    width: 36px;
    height: 26px;
    background: var(--bg-cell) no-repeat center;
    border: 1px solid var(--bd);
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    overflow: hidden;
    opacity: .85;
    transition: opacity var(--s);
}

.selected-language:hover { opacity: 1; }

.language-container {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    padding: 6px;
    background: var(--bg-cell);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    z-index: 201;
}

.language-container.active-language { display: block; }

.language {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin: 2px;
    border: 1px solid transparent;
    border-radius: var(--r);
    font-size: var(--fss);
    cursor: pointer;
    transition: all var(--s);
    white-space: nowrap;
}

.language:hover { border-color: var(--bd); }
.language-img { width: 22px; border-radius: 3px; }

/* =============================================================================
   UTILITIES
   ============================================================================= */
.hide { display: none !important; }
.show { display: block !important; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =============================================================================
   FOCUS STATES
   ============================================================================= */
:focus { outline: none; }

:focus-visible {
    outline: 2px solid var(--p);
    outline-offset: 2px;
}

.pax-btn:focus-visible,
.dur-tile:focus-visible,
.quarter:focus-visible,
.cal .day:focus-visible {
    outline: 2px solid var(--p);
    outline-offset: 2px;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 400px) {
    :root {
        --fs: 15px;
        --h: 40px;
    }

    .summary-card__info {
        gap: 8px 14px;
    }
}
