/* Wedding Registry - Improved styling with Arial font and better layout */

/* Import Source Serif Pro font for banner only */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0d2e3;
    min-height: 100vh;
    color: #1f2937;
}

/* Color variables */
:root {
    --teal-primary: rgb(30, 123, 146);
    --teal-hover: rgb(25, 100, 120);
    --pink-bg: #f0d2e3;
}

/* Container - improved layout */
.main-container {
    width: 95vw;
    max-width: none;
    margin: 0 auto;
    padding: 2rem 0;
}

.content-card {
    background: white;
    border-radius: 0.75rem;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: visible;
    position: relative;
}

/* Banner - keep Source Serif Pro font */
.banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
    font-family: 'Source Serif Pro', serif;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'SourceSerifPro', Times, serif;
}

.banner-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.registry-label {
    font-size: 1.125rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-family: Arial, sans-serif;
}

.divider {
    font-size: 1.125rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-family: Arial, sans-serif;
}

.banner-date {
    font-size: 1.125rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-family: Arial, sans-serif;
}

/* Content area - white background with padding */
.content-card .filter-bar,
.content-card #productsContainer {
    padding-left: 2rem;
    padding-right: 2rem;
}

.content-card .filter-bar {
    padding-top: 7rem; /* Extra space to account for overlapping profile image */
    margin-bottom: 2rem;
}

.content-card #productsContainer {
    padding-bottom: 2rem;
}

/* Profile section - left aligned and overlapping banner */
.profile-section {
    position: absolute;
    left: 3rem;
    top: 9rem;
    z-index: 10;
}

.profile-image {
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
}

/* Filter bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.filter-bar select,
.custom-store-input {
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    background: white;
    transition: all 0.2s;
}

.filter-bar select {
    cursor: pointer;
}

.custom-store-input {
    min-width: 200px;
}

.filter-bar select:hover,
.custom-store-input:hover {
    border-color: var(--teal-primary);
}

.filter-bar select:focus,
.custom-store-input:focus {
    outline: none;
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 3px rgba(30, 123, 146, 0.1);
}

.mobile-filter-toggle {
    display: none;
    padding: 0.75rem 1rem;
    border: 2px solid var(--teal-primary);
    border-radius: 0.5rem;
    background: white;
    color: var(--teal-primary);
    font-size: 1rem;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    align-items: center;
    gap: 0.5rem;
}

.mobile-filter-toggle:hover {
    background: var(--teal-primary);
    color: white;
}

/* View toggle buttons */
.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-toggle-btn {
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 0.375rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.view-toggle-btn:hover {
    border-color: var(--teal-primary);
    background: #f0f9ff;
}

.view-toggle-btn.active {
    border-color: var(--teal-primary);
    background: var(--teal-primary);
    color: white;
}

/* Product grid (card view) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Product list (list view) */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-list-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    transition: all 0.2s;
    cursor: pointer;
}

.product-list-item:hover {
    border-color: var(--teal-primary);
    box-shadow: 0 4px 12px rgba(30, 123, 146, 0.15);
}

.product-list-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: white;
    border-radius: 0.375rem;
    flex-shrink: 0;
}

.product-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-list-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.product-list-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--teal-primary);
    margin-bottom: 0.5rem;
}

.product-list-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.product-list-progress {
    margin-top: 0.5rem;
}

/* Product card (card view) */
.product-card {
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--teal-primary);
    box-shadow: 0 8px 24px rgba(30, 123, 146, 0.2);
    transform: translateY(-2px);
}

.product-image-container {
    width: 100%;
    height: 250px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--teal-primary);
    margin-bottom: 0.5rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.product-store {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
}

/* Progress bar */
.progress-container {
    margin-top: auto;
}

.progress-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.progress-bar {
    width: 100%;
    height: 0.75rem;
    background: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--teal-primary), rgb(45, 150, 175));
    transition: width 0.3s;
}

.progress-fill.complete {
    background: linear-gradient(to right, #10b981, #34d399);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1000;
    padding: 2rem 1rem;
    overflow-y: auto;
}

.modal-content {
    background: white;
    border-radius: 0.75rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #6b7280;
    transition: all 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.modal-body {
    padding: 2rem;
}

.modal-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-primary);
    margin-bottom: 1.5rem;
    font-family: Arial, sans-serif;
}

.modal-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-detail-item {
    display: flex;
    flex-direction: column;
}

.modal-detail-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    font-family: Arial, sans-serif;
}

.modal-detail-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    font-family: Arial, sans-serif;
}

/* Buttons */
.btn {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--teal-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--teal-hover);
    box-shadow: 0 4px 12px rgba(30, 123, 146, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--teal-primary);
    border: 2px solid var(--teal-primary);
}

.btn-secondary:hover {
    background: #f0f9ff;
}

.btn-full {
    width: 100%;
}

/* Counter */
.counter-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter {
    display: flex;
    align-items: center;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    overflow: hidden;
}

.counter-btn {
    padding: 0.75rem 1.25rem;
    background: #f3f4f6;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4b5563;
    cursor: pointer;
    transition: background 0.2s;
    font-family: Arial, sans-serif;
}

.counter-btn:hover {
    background: #e5e7eb;
}

.counter-value {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    min-width: 60px;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Address box */
.address-box {
    background: #f0f9ff;
    border: 2px solid var(--teal-primary);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.address-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

.address-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    white-space: pre-line;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

.copy-address-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal-primary);
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-family: Arial, sans-serif;
}

.copy-address-btn:hover {
    color: var(--teal-hover);
}

/* Admin page */
.admin-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.admin-header {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.admin-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

.admin-form {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: all 0.2s;
    background: #fafafa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--teal-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 123, 146, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Admin items list */
.admin-items {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.admin-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #f3f4f6;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: #fafafa;
    transition: all 0.2s;
}

.admin-item:hover {
    border-color: var(--teal-primary);
    background: white;
    box-shadow: 0 2px 8px rgba(30, 123, 146, 0.1);
}

.admin-item-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: white;
    border-radius: 0.375rem;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
}

.admin-item-content {
    flex: 1;
}

.admin-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

.admin-item-details {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

.admin-item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

/* Admin action buttons */
.btn-edit,
.btn-delete {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Arial, sans-serif;
    min-width: 80px;
    justify-content: center;
}

.btn-edit {
    background: #3b82f6;
    color: white;
}

.btn-edit:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.btn-delete {
    background: #ef4444;
    color: white;
}

.btn-delete:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

/* Alert styles */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: Arial, sans-serif;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
}

.btn-delete {
    background: #ef4444;
    color: white;
}

.btn-delete:hover {
    background: #dc2626;
}

/* Purchase redirect page */
.redirect-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.redirect-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.redirect-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--teal-primary);
}

.redirect-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.redirect-message {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.countdown {
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal-primary);
    margin: 2rem 0;
}

/* Loading spinner */
.spinner {
    border: 4px solid #f3f4f6;
    border-top: 4px solid var(--teal-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d1fae5;
    border: 2px solid #10b981;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    border: 2px solid #ef4444;
    color: #991b1b;
}

.alert-info {
    background: #dbeafe;
    border: 2px solid #3b82f6;
    color: #1e40af;
}

/* Responsive */
@media (max-width: 768px) {
    .main-container {
        width: 98vw;
    }
    
    .banner-title {
        font-size: 1.75rem;
    }
    
    /* Keep Wedding Registry and date on same line on mobile */
    .banner-subtitle {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .registry-label,
    .banner-date {
        font-size: 0.95rem;
        white-space: nowrap;
    }
    
    .divider {
        font-size: 0.95rem;
        display: inline;
    }
    
    /* Mobile: center profile image and keep fixed */
    .profile-section {
        position: absolute;
        left: 50%;
        top: 15rem;
        transform: translateX(-50%);
        z-index: 10;
        padding: 0;
        margin: 0;
    }
    
    .profile-image {
        width: 10rem;
        height: 10rem;
    }
    
    /* Mobile: adjust filter bar to be below profile image */
    .content-card .filter-bar {
        padding-top: 8rem;
        margin-bottom: 1rem;
    }
    
    /* Keep filters and view toggle on same line on mobile */
    .filter-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .mobile-filter-toggle {
        display: flex !important;
        flex-shrink: 0;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        border: 2px solid #e5e7eb;
        border-radius: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 20;
    }
    
    .filter-controls.mobile-hidden {
        display: none;
    }
    
    .filter-controls.show {
        display: flex !important;
    }
    
    .custom-store-input {
        min-width: auto;
        width: 100%;
    }
    
    /* Keep view toggle on same line as filter toggle */
    .view-toggle {
        justify-content: center;
        flex-shrink: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-details {
        grid-template-columns: 1fr;
    }
    
    /* Fix mobile list view to be actual list, not cards */
    .product-list-item {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }
    
    .product-list-image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }
    
    .product-list-content {
        flex: 1;
    }
    
    .product-list-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .product-list-price {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }
    
    .product-list-meta {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
}

/* Utility classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Top navigation admin button */
.admin-nav-btn {
    background: white;
    color: var(--teal-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.admin-nav-btn:hover {
    background: var(--teal-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 123, 146, 0.3);
    transform: translateY(-2px);
}

/* Welcome Modal */
.welcome-modal {
    max-width: 600px;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-primary);
    margin-bottom: 1rem;
    text-align: center;
    font-family: Arial, sans-serif;
}

.welcome-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: Arial, sans-serif;
}

.welcome-steps {
    margin-bottom: 2rem;
}

.welcome-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.step-number {
    background: var(--teal-primary);
    color: white;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    font-family: Arial, sans-serif;
}

.step-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #1f2937;
    font-family: Arial, sans-serif;
}

.welcome-thank-you {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ecfdf5;
    border-radius: 0.5rem;
}

.welcome-thank-you p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-family: Arial, sans-serif;
}

.welcome-signature {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--pink-primary);
    font-family: 'Brush Script MT', cursive !important;
}

.welcome-close-btn {
    width: 100%;
    background: var(--teal-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: Arial, sans-serif;
}

.welcome-close-btn:hover {
    background: var(--teal-secondary);
    transform: translateY(-1px);
}
}
