/* =============================================================================
   Wallet Delivery Gate — Hyva additions
   Replaces the jQuery UI datepicker styles from FSS_BrippoWalletFix
   with a custom card-grid date picker.
   ============================================================================= */

/* Inline calendar */
.fss-cal-container {
    user-select: none;
}

.fss-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.fss-cal-month-name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.fss-cal-nav {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: #6b7280;
    padding: 0 6px;
    line-height: 1;
    transition: color 0.15s;
}
.fss-cal-nav:hover { color: #111; }
.fss-cal-nav-placeholder {
    display: inline-block;
    width: 32px;
}

.fss-postcode-submit, .fss-coupon-apply
{
    width: auto;
    background: black;
    color: white;
    padding: 17px;
    border-radius: 5px;
}
.fss-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 4px;
}
.fss-cal-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    padding: 2px 0;
}

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

.fss-cal-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 50%;
    border: none;
    background: none;
    padding: 0;
}

.fss-cal-empty,
.fss-cal-other {
    color: #e5e7eb;
}

.fss-cal-avail {
    color: #111;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.fss-cal-avail:hover {
    background: #f0fdf4;
    color: #15803d;
}

.fss-cal-unavail {
    color: #d1d5db;
    text-decoration: line-through;
    cursor: not-allowed;
}
