/* Container */
#ptr-reservation-container {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    color: #eee;
    font-family: Arial, sans-serif;
}

/* Title */
.ptr-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #e63946; /* Pin & Tee neon red */
}

/* Form Fields */
.ptr-field {
    margin-bottom: 18px;
}

.ptr-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    color: #ddd;
}

.ptr-field input,
.ptr-field select {
    width: 100%;
    padding: 10px;
    background: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 8px;
}

.ptr-field input:focus,
.ptr-field select:focus {
    border-color: #e63946;
    outline: none;
}

/* Time Slots Grid */
.ptr-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
}

/* Time Slot Button */
.ptr-slot {
    padding: 10px;
    text-align: center;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    transition: 0.2s;
    user-select: none;
}

.ptr-slot:hover {
    border-color: #e63946;
}

.ptr-selected {
    background: #e63946 !important;
    color: #fff !important;
    border-color: #e63946 !important;
}

.ptr-disabled {
    background: #444 !important;
    color: #999 !important;
    cursor: not-allowed !important;
    text-decoration: line-through;
}

/* Submit Button */
#ptr-submit-btn {
    width: 100%;
    padding: 14px;
    background: #e63946;
    color: white;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: 0.2s;
}

#ptr-submit-btn:hover {
    opacity: 0.85;
}

/* Messages */
#ptr-message-area {
    margin-top: 15px;
}

.ptr-error {
    padding: 12px;
    background: #8b0000;
    color: #fff;
    border-radius: 8px;
}

.ptr-success {
    padding: 12px;
    background: #1b8b2a;
    color: #fff;
    border-radius: 8px;
}

.ptr-loading {
    color: #ccc;
    font-size: 14px;
}

.ptr-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.ptr-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: #fff;
}

.ptr-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ptr-card {
    background: #1b1b1b;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0 10px #000;
    transition: transform .2s, box-shadow .2s;
}

.ptr-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px #000;
}

.ptr-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.ptr-card-body {
    padding: 15px;
}

.ptr-card-body h3 {
    margin: 0 0 6px 0;
}

.ptr-btn {
    display: inline-block;
    background: #e63946;
    padding: 8px 14px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: bold;
}

/* Step Wrapper */
.ptr-step {
    display: none;
}

.ptr-step.active {
    display: block;
}

/* Date Selector */
.ptr-date-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    font-size: 1.2rem;
}

.ptr-nav-btn {
    background: #222;
    border: 1px solid #444;
    color: #fff;
    padding: 10px 14px;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
}

/* Guest Selector */
.ptr-guest-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.ptr-guest-btn {
    background: #222;
    border: 1px solid #444;
    padding: 10px 14px;
    color: #fff;
    border-radius: 8px;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Next Button */
.ptr-next-btn {
    background: #e63946;
    color: white;
    padding: 14px 20px;
    width: 100%;
    font-size: 1.2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
}


/* Step container */
.ptr-step {
    display: none;
}

.ptr-step.active {
    display: block;
}

/* Time Slot Grid */
.ptr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.ptr-slot {
    background: #222;
    border: 1px solid #444;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    color: #fff;
}

.ptr-slot.booked {
    background: #444;
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
}

.ptr-slot.selected {
    background: #e63946;
    border-color: #e63946;
}

/* Navigation Buttons */
.ptr-back-btn {
    background: #444;
    color: white;
    padding: 12px 18px;
    margin-top: 20px;
    margin-right: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.ptr-next-btn {
    background: #e63946;
    color: white;
    padding: 12px 18px;
    margin-top: 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.ptr-next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}



.ptr-step { display: none; }
.ptr-step.active { display: block; }

.ptr-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
}

.ptr-slot {
    padding: 12px;
    background: #222;
    color: white;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}
.ptr-slot.selected {
    background: #e63946;
}
