/**
 * Photo Booking Pro - Public Styles
 * Design: Warm Professional Studio
 * Colors: Deep Teal (#0D5C63), Warm Gold (#D4A853), Soft Coral (#E8927C)
 */

/* Google Fonts - DM Serif Display & DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* CSS Variables */
:root {
    --pbp-primary: #0D5C63;
    --pbp-primary-light: rgba(13, 92, 99, 0.1);
    --pbp-primary-foreground: #F5F0E8;
    --pbp-secondary: #D4A853;
    --pbp-accent: #E8927C;
    --pbp-background: #FFFDF9;
    --pbp-foreground: #1a1a1a;
    --pbp-muted: #f5f5f4;
    --pbp-muted-foreground: #737373;
    --pbp-border: #e5e5e5;
    --pbp-card: #ffffff;
    --pbp-radius: 0.75rem;
    --pbp-shadow: 0 4px 20px rgba(13, 92, 99, 0.08);
    --pbp-shadow-lg: 0 8px 30px rgba(13, 92, 99, 0.12);
    --pbp-font-serif: 'DM Serif Display', Georgia, serif;
    --pbp-font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
.pbp-booking-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: var(--pbp-font-sans);
    color: var(--pbp-foreground);
    background: var(--pbp-background);
    line-height: 1.6;
}

.pbp-booking-wrapper * {
    box-sizing: border-box;
}

.pbp-form-title {
    text-align: center;
    font-family: var(--pbp-font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--pbp-foreground);
}

.pbp-form-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--pbp-muted-foreground);
    max-width: 600px;
    margin: 0 auto 40px;
}

.pbp-hidden {
    display: none !important;
}

/* Progress Steps */
.pbp-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.pbp-progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    position: relative;
}

.pbp-progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--pbp-border);
}

.pbp-progress-step.active:not(:last-child)::after,
.pbp-progress-step.completed:not(:last-child)::after {
    background: var(--pbp-primary);
}

.pbp-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    background: var(--pbp-muted);
    color: var(--pbp-muted-foreground);
    transition: all 0.3s ease;
}

.pbp-progress-step.active .pbp-step-number {
    background: var(--pbp-primary);
    color: var(--pbp-primary-foreground);
}

.pbp-progress-step.completed .pbp-step-number {
    background: var(--pbp-primary);
    color: var(--pbp-primary-foreground);
}

.pbp-step-label {
    font-size: 0.875rem;
    color: var(--pbp-muted-foreground);
    font-weight: 500;
}

.pbp-progress-step.active .pbp-step-label {
    color: var(--pbp-primary);
    font-weight: 600;
}

/* Steps */
.pbp-step {
    display: none;
    padding-bottom: 30px;
}

.pbp-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pbp-step h3 {
    font-family: var(--pbp-font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--pbp-foreground);
}

.pbp-step-subtitle {
    color: var(--pbp-muted-foreground);
    margin-bottom: 25px;
}

/* Services Grid - New Card Design */
.pbp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .pbp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pbp-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Card */
.pbp-service-card {
    background: var(--pbp-card);
    border: 2px solid transparent;
    border-radius: var(--pbp-radius);
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--pbp-shadow);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pbp-service-card:hover {
    box-shadow: var(--pbp-shadow-lg);
    transform: translateY(-2px);
}

.pbp-service-card.selected {
    border-color: var(--pbp-primary);
    box-shadow: var(--pbp-shadow-lg);
}

.pbp-service-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    right: 16px;
    background: var(--pbp-primary);
    color: var(--pbp-primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Service Card Header */
.pbp-service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pbp-service-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--pbp-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pbp-service-icon svg {
    width: 20px;
    height: 20px;
    color: var(--pbp-primary);
}

.pbp-service-header h4 {
    font-family: var(--pbp-font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--pbp-foreground);
    margin: 0;
}

/* Service Description */
.pbp-service-desc {
    font-size: 0.875rem;
    color: var(--pbp-muted-foreground);
    margin-bottom: 12px;
}

/* Service Price */
.pbp-service-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.pbp-service-price .amount {
    font-family: var(--pbp-font-serif);
    font-size: 1.875rem;
    color: var(--pbp-primary);
    font-weight: 400;
}

.pbp-service-price .currency {
    font-size: 0.875rem;
    color: var(--pbp-muted-foreground);
}

/* Perfect For */
.pbp-service-perfect {
    font-size: 0.875rem;
    color: var(--pbp-muted-foreground);
    margin-bottom: 16px;
}

.pbp-service-perfect strong {
    color: var(--pbp-foreground);
    font-weight: 500;
}

/* Expandable Section */
.pbp-service-expand {
    border-top: 1px solid var(--pbp-border);
    padding-top: 16px;
    margin-top: auto;
}

.pbp-see-more-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--pbp-font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pbp-primary);
    transition: color 0.2s ease;
}

.pbp-see-more-btn:hover {
    opacity: 0.8;
}

.pbp-see-more-btn svg,
.pbp-see-more-btn .pbp-chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.pbp-see-more-btn.expanded svg,
.pbp-see-more-btn.expanded .pbp-chevron {
    transform: rotate(90deg);
}

.pbp-service-includes {
    display: none;
    margin-top: 12px;
}

.pbp-service-includes.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.pbp-service-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pbp-service-includes li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--pbp-muted-foreground);
    padding: 4px 0;
}

.pbp-service-includes li::before {
    content: '✓';
    color: var(--pbp-primary);
    font-weight: bold;
    flex-shrink: 0;
}

/* Selected Package Detail */
.pbp-selected-detail {
    background: var(--pbp-card);
    border-radius: var(--pbp-radius);
    box-shadow: var(--pbp-shadow-lg);
    overflow: hidden;
    margin-top: 32px;
    display: none;
}

.pbp-selected-detail.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

.pbp-detail-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

@media (max-width: 768px) {
    .pbp-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Detail Image */
.pbp-detail-image {
    position: relative;
    min-height: 300px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.pbp-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.pbp-detail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.pbp-detail-overlay h3 {
    font-family: var(--pbp-font-serif);
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 4px 0;
}

.pbp-detail-overlay p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Detail Content */
.pbp-detail-content {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 640px) {
    .pbp-detail-content {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

.pbp-detail-section h4 {
    font-family: var(--pbp-font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pbp-detail-section h4 svg {
    width: 20px;
    height: 20px;
    color: var(--pbp-primary);
}

/* Includes List */
.pbp-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pbp-includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.875rem;
}

.pbp-includes-list li::before {
    content: '✓';
    color: var(--pbp-primary);
    font-weight: bold;
    flex-shrink: 0;
}

/* Add-ons List in Detail */
.pbp-detail-addons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pbp-detail-addons li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: var(--pbp-muted);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.pbp-detail-addons li span:last-child {
    font-weight: 500;
    color: var(--pbp-primary);
    white-space: nowrap;
}

/* Continue Button */
.pbp-continue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--pbp-primary);
    color: var(--pbp-primary-foreground);
    border: none;
    padding: 14px 32px;
    font-family: var(--pbp-font-sans);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--pbp-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.pbp-continue-btn svg {
    width: 18px;
    height: 18px;
}

/* Ensure step 1 has proper spacing for the button */
.pbp-step-1 {
    padding-bottom: 20px;
}

.pbp-continue-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Add-ons Step */
.pbp-addons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

@media (max-width: 640px) {
    .pbp-addons-container {
        grid-template-columns: 1fr;
    }
}

.pbp-addon-item {
    background: var(--pbp-card);
    border: 2px solid var(--pbp-border);
    border-radius: var(--pbp-radius);
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pbp-addon-item:hover {
    border-color: var(--pbp-primary);
    box-shadow: var(--pbp-shadow);
}

.pbp-addon-item.selected {
    border-color: var(--pbp-primary);
    background: var(--pbp-primary-light);
}

.pbp-addon-label {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    width: 100%;
}

.pbp-addon-checkbox {
    width: 24px;
    height: 24px;
    accent-color: var(--pbp-primary);
}

.pbp-addon-info {
    flex: 1;
}

.pbp-addon-name {
    font-weight: 500;
    color: var(--pbp-foreground);
    margin-bottom: 4px;
}

.pbp-addon-price {
    font-family: var(--pbp-font-serif);
    font-size: 1.125rem;
    color: var(--pbp-primary);
    white-space: nowrap;
}

.pbp-no-addons {
    text-align: center;
    padding: 40px;
    color: var(--pbp-muted-foreground);
    grid-column: 1 / -1;
}

/* Date & Time Step */
.pbp-date-time-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .pbp-date-time-container {
        grid-template-columns: 1fr;
    }
}

.pbp-date-picker,
.pbp-time-slots {
    background: var(--pbp-card);
    border-radius: var(--pbp-radius);
    padding: 24px;
    box-shadow: var(--pbp-shadow);
}

.pbp-date-picker label,
.pbp-time-slots > label {
    display: block;
    font-family: var(--pbp-font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--pbp-foreground);
}

.pbp-date-picker input[type="date"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--pbp-border);
    border-radius: 8px;
    font-family: var(--pbp-font-sans);
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--pbp-card);
}

.pbp-date-picker input[type="date"]:focus {
    outline: none;
    border-color: var(--pbp-primary);
    box-shadow: 0 0 0 3px var(--pbp-primary-light);
}

/* Time Slots */
.pbp-slots-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pbp-slot-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--pbp-border);
    border-radius: var(--pbp-radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pbp-slot-option:hover {
    border-color: var(--pbp-primary);
}

.pbp-slot-option:has(input:checked) {
    border-color: var(--pbp-primary);
    background: var(--pbp-primary-light);
}

.pbp-slot-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--pbp-primary);
}

.pbp-slot-label {
    flex: 1;
}

.pbp-slot-name {
    font-weight: 500;
    color: var(--pbp-foreground);
}

.pbp-slot-time {
    font-size: 0.875rem;
    color: var(--pbp-muted-foreground);
}

.pbp-slot-note {
    font-size: 0.875rem;
    color: var(--pbp-muted-foreground);
    margin-top: 12px;
    font-style: italic;
}

/* Form Fields */
.pbp-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 640px) {
    .pbp-form-grid {
        grid-template-columns: 1fr;
    }
}

.pbp-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pbp-form-full {
    grid-column: 1 / -1;
}

.pbp-form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pbp-foreground);
}

.pbp-form-group input,
.pbp-form-group select,
.pbp-form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--pbp-border);
    border-radius: 8px;
    font-family: var(--pbp-font-sans);
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--pbp-card);
}

.pbp-form-group input:focus,
.pbp-form-group select:focus,
.pbp-form-group textarea:focus {
    outline: none;
    border-color: var(--pbp-primary);
    box-shadow: 0 0 0 3px var(--pbp-primary-light);
}

.pbp-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Payment Options */
.pbp-payment-options {
    margin-bottom: 25px;
    padding-top: 24px;
    border-top: 1px solid var(--pbp-border);
}

.pbp-payment-options h4 {
    font-family: var(--pbp-font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--pbp-foreground);
}

.pbp-payment-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pbp-payment-option {
    cursor: pointer;
}

.pbp-payment-option input {
    display: none;
}

.pbp-payment-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--pbp-border);
    border-radius: var(--pbp-radius);
    transition: all 0.2s ease;
}

.pbp-payment-option:hover .pbp-payment-card {
    border-color: var(--pbp-primary);
}

.pbp-payment-option input:checked + .pbp-payment-card {
    border-color: var(--pbp-primary);
    background: var(--pbp-primary-light);
}

.pbp-payment-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--pbp-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pbp-payment-option input:checked + .pbp-payment-card .pbp-payment-radio {
    border-color: var(--pbp-primary);
}

.pbp-payment-option input:checked + .pbp-payment-card .pbp-payment-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--pbp-primary);
    border-radius: 50%;
}

.pbp-payment-info {
    flex: 1;
}

.pbp-payment-title {
    font-weight: 500;
    color: var(--pbp-foreground);
}

.pbp-payment-desc {
    font-size: 0.875rem;
    color: var(--pbp-muted-foreground);
}

.pbp-payment-amount {
    font-family: var(--pbp-font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--pbp-primary);
}

/* Terms */
.pbp-terms {
    margin-bottom: 25px;
}

.pbp-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.pbp-checkbox-label input {
    width: 20px;
    height: 20px;
    accent-color: var(--pbp-primary);
}

.pbp-terms-link {
    color: var(--pbp-primary);
    text-decoration: underline;
}

/* Order Summary */
.pbp-order-summary {
    background: var(--pbp-card);
    border-radius: var(--pbp-radius);
    padding: 24px;
    box-shadow: var(--pbp-shadow);
    margin-bottom: 25px;
}

.pbp-order-summary h4 {
    font-family: var(--pbp-font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pbp-border);
}

.pbp-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9375rem;
}

.pbp-summary-row.addon {
    color: var(--pbp-muted-foreground);
    padding-left: 16px;
}

.pbp-summary-label {
    color: var(--pbp-foreground);
}

.pbp-summary-value {
    font-weight: 500;
    color: var(--pbp-foreground);
}

.pbp-summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 2px solid var(--pbp-border);
    font-size: 1.25rem;
    font-weight: 600;
}

.pbp-summary-total .pbp-summary-value {
    color: var(--pbp-primary);
    font-family: var(--pbp-font-serif);
}

.pbp-summary-payment {
    background: var(--pbp-primary-light);
    margin: 16px -24px -24px;
    padding: 16px 24px;
    border-radius: 0 0 var(--pbp-radius) var(--pbp-radius);
}

.pbp-summary-payment .pbp-summary-label {
    color: var(--pbp-primary);
}

.pbp-amount-due {
    font-family: var(--pbp-font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--pbp-primary);
}

/* Buttons */
.pbp-btn {
    padding: 14px 28px;
    border: none;
    border-radius: var(--pbp-radius);
    font-family: var(--pbp-font-sans);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pbp-btn-primary {
    background: var(--pbp-primary);
    color: var(--pbp-primary-foreground);
}

.pbp-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.pbp-btn-secondary {
    background: transparent;
    color: var(--pbp-muted-foreground);
    border: 1px solid var(--pbp-border);
}

.pbp-btn-secondary:hover {
    border-color: var(--pbp-primary);
    color: var(--pbp-primary);
}

.pbp-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pbp-step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--pbp-border);
}

/* Success State */
.pbp-step-success {
    text-align: center;
    padding: 60px 20px;
    background: var(--pbp-card);
    border-radius: var(--pbp-radius);
    box-shadow: var(--pbp-shadow-lg);
}

.pbp-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
}

.pbp-step-success h3 {
    font-family: var(--pbp-font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--pbp-foreground);
    margin-bottom: 12px;
}

.pbp-success-message {
    font-size: 1.125rem;
    color: var(--pbp-muted-foreground);
    margin-bottom: 15px;
}

.pbp-booking-number {
    font-size: 1.125rem;
    margin-bottom: 15px;
}

.pbp-booking-number strong {
    color: var(--pbp-primary);
}

.pbp-confirmation-note {
    font-size: 0.875rem;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Error State */
.pbp-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Loading */
.pbp-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.pbp-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--pbp-border);
    border-top-color: var(--pbp-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
    .pbp-booking-wrapper {
        padding: 20px;
    }
    
    .pbp-form-title {
        font-size: 1.75rem;
    }
    
    .pbp-progress {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .pbp-progress-step:not(:last-child)::after {
        display: none;
    }
    
    .pbp-progress-step {
        flex: 0 0 45%;
    }
    
    .pbp-step-label {
        font-size: 0.75rem;
    }
    
    .pbp-step-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .pbp-step-nav .pbp-btn {
        width: 100%;
    }
}
