/**
 * BrettRips Consignment Frontend Styles
 * Complete CSS matching React/Tailwind design
 */

:root {
    --background: 0 0% 4%;
    --foreground: 0 0% 95%;
    --card: 0 0% 7%;
    --card-foreground: 0 0% 95%;
    /* Primary brand color #FFE414 */
    --primary: 54 100% 54%;
    --primary-foreground: 0 0% 0%;
    --secondary: 0 0% 12%;
    --secondary-foreground: 0 0% 95%;
    --muted: 0 0% 15%;
    --muted-foreground: 0 0% 60%;
    --accent: 54 100% 54%;
    --accent-foreground: 0 0% 0%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 0 0% 18%;
    --input: 0 0% 15%;
    --ring: 54 100% 54%;
    --radius: 0.5rem;
    --warning: 35 92% 50%;
    --warning-foreground: 35 92% 90%;
    --warning-bg: 35 60% 12%;
    --warning-border: 35 50% 25%;
    --nav-active: 54 100% 54%;
    --nav-active-bg: 54 100% 15%;
    --table-header: 0 0% 10%;
    --table-border: 0 0% 15%;
}

/* Reset and Base */
.brettrips-container,
.brettrips-container * {
    box-sizing: border-box;
}

.brettrips-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Keep theme (e.g. Astra) from overriding plugin colors/links inside the container */
.brettrips-container a {
    color: inherit;
    text-decoration: none;
}

.brettrips-container a:hover {
    color: inherit;
    text-decoration: underline;
}

.brettrips-container button,
.brettrips-container input,
.brettrips-container select,
.brettrips-container textarea {
    font-family: inherit;
    color: hsl(var(--foreground));
}

/* Header Styles */
.brettrips-header {
    border-bottom: 1px solid hsl(var(--border));
    background-color: hsl(var(--background));
}

.brettrips-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.brettrips-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brettrips-logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--accent)));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.brettrips-logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.brettrips-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brettrips-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    color: hsl(var(--muted-foreground));
    transition: all 0.2s;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.875rem;
}

.brettrips-nav-item:hover {
    color: hsl(var(--foreground));
}

.brettrips-nav-active {
    background-color: hsl(var(--nav-active-bg));
    color: hsl(var(--nav-active));
}

.brettrips-user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid hsl(var(--border));
    overflow: hidden;
}

.brettrips-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brettrips-header-indicator {
    height: 0.25rem;
    background: hsl(var(--primary));
}

/* Main Content */
.brettrips-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Auth / Login Screen */
.brettrips-auth-main {
    max-width: 100%;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brettrips-auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.brettrips-auth-card {
    background-color: hsl(var(--background));
    border-radius: 9999px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brettrips-auth-title,
.brettrips-auth-subtitle {
    display: none;
}

.brettrips-auth-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brettrips-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}

.brettrips-google-btn:focus {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

.brettrips-google-btn:hover {
    background-color: hsl(var(--primary) / 0.9);
    color: hsl(var(--primary-foreground));
}

.brettrips-google-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: hsl(var(--primary-foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.brettrips-auth-signup-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.brettrips-auth-signup-btn:hover {
    background-color: transparent;
    color: #ffffff;
}

.brettrips-auth-signup-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    font-weight: 700;
    /* Simple user/register SVG icon (white strokes) */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8' r='3.5' stroke='%23ffffff' stroke-width='1.8'/%3E%3Cpath d='M5 19c1.2-3 3.5-4.5 7-4.5s5.8 1.5 7 4.5' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.brettrips-main>*+* {
    margin-top: 1.5rem;
}

/* Info Banner */
.brettrips-info-banner {
    background-color: #ffffff;
    color: #000000;
    border-radius: var(--radius);
    padding: 1rem;
}

.brettrips-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brettrips-info-item {
    color: #000000;
    font-size: 0.875rem;
    line-height: 1.6;
}

.brettrips-info-item strong {
    font-weight: 600;
    color: #000000;
}

.brettrips-highlight {
    font-weight: 600;
    color: #000000;
}

.brettrips-underline {
    text-decoration: underline;
}

/* Submissions Section */
.brettrips-submissions-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brettrips-submissions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brettrips-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin: 0;
}

.brettrips-subtitle {
    font-size: 0.875rem;
    color: #ffffff;
    margin: 0.25rem 0 0 0;
}

/* Button Styles */
.brettrips-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    height: 2.5rem;
}

.brettrips-btn:focus-visible {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

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

.brettrips-btn-primary:hover {
    background-color: hsl(var(--primary) / 0.9);
}

.brettrips-btn-outline-primary {
    background-color: hsl(var(--primary));
    border: none;
    color: #000000 !important;
    border-radius: calc(var(--radius) + 2px);
}

.brettrips-btn-outline-primary:hover {
    background-color: hsl(var(--primary) / 0.9);
    color: #000000;
}

.brettrips-btn-outline {
    background: transparent;
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
}

.brettrips-btn-outline:hover {
    background-color: hsl(var(--muted));
}

.brettrips-btn-danger {
    background-color: hsl(var(--destructive));
    color: hsl(var(--destructive-foreground));
}

.brettrips-btn-danger:hover {
    background-color: hsl(var(--destructive) / 0.9);
}

.brettrips-btn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
}

.brettrips-btn-secondary:hover {
    background-color: hsl(var(--secondary) / 0.8);
}

.brettrips-btn-submit {
    width: auto;
    min-width: 10rem;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
    color: hsl(var(--primary-foreground));
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    height: 2.5rem;
}

/* Make Complete Profile button full-width in signup dialog */
#brettrips_signup_dialog .brettrips-btn-submit {
    width: 100%;
    min-width: 0;
}

.brettrips-btn-submit:hover {
    opacity: 0.9;
}

.brettrips-btn-back {
    background: transparent;
    border: none;
    color: hsl(var(--muted-foreground));
    font-size: 1.25rem;
    cursor: pointer;
    text-decoration: none;
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    height: auto;
    width: auto;
}

.brettrips-btn-back:hover {
    color: hsl(var(--foreground));
}

.brettrips-btn-ghost {
    background: transparent;
    color: hsl(var(--foreground));
}

.brettrips-btn-ghost:hover {
    background-color: hsl(var(--muted));
}

/* Table Styles */
.brettrips-table-wrapper {
    border: 1px solid hsl(var(--table-border));
    border-radius: var(--radius);
    overflow: hidden;
}

.brettrips-table-header {
    background-color: hsl(var(--table-header));
}

.brettrips-table-body {
    background-color: hsl(var(--card));
}

.brettrips-table-row {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 1rem;
    padding: 0.75rem 1rem;
}

.brettrips-table-cell {
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brettrips-table-body .brettrips-table-row {
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    border-top: 1px solid hsl(var(--table-border));
    cursor: pointer;
    transition: background-color 0.2s;
}

.brettrips-table-body .brettrips-table-row:hover {
    background-color: hsl(var(--muted) / 0.5);
}

.brettrips-table-body .brettrips-table-row .brettrips-table-cell {
    text-transform: none;
    font-weight: normal;
    color: hsl(var(--foreground));
}

.brettrips-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.brettrips-badge-submitted {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.brettrips-badge-cancelled {
    background-color: #dc2626;
    color: #ffffff;
}

.brettrips-badge-processing,
.brettrips-badge-received {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.brettrips-badge-completed,
.brettrips-badge-paid {
    background-color: #16a34a;
    color: #ffffff;
}

.brettrips-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    color: hsl(var(--muted-foreground));
    gap: 1rem;
}

.brettrips-empty-state p {
    margin: 0;
}

/* Card Styles */
.brettrips-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem;
}

.brettrips-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0 0 0.25rem 0;
}

.brettrips-card-title-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0 0 0.5rem 0;
}

.brettrips-card-subtitle {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin: 0 0 1rem 0;
}

/* Form Styles */
.brettrips-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .brettrips-form-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.brettrips-form-left,
.brettrips-form-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brettrips-input,
.brettrips-textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    font-family: inherit;
}

.brettrips-input {
    background-color: #1E1E1E !important;
    color: #ffffff !important;
    border: none !important;
}

.brettrips-textarea {
    background-color: hsl(var(--secondary));
}

.brettrips-input:focus,
.brettrips-textarea:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.brettrips-textarea {
    min-height: 100px;
    resize: vertical;
}

.brettrips-label {
    display: block;
    font-weight: 500;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.brettrips-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
}

.brettrips-description {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.brettrips-warning {
    font-size: 0.875rem;
    color: hsl(var(--warning));
}

.brettrips-warning-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--destructive));
}

.brettrips-warning-list {
    margin-top: 0.75rem;
    padding-left: 1rem;
    list-style: disc;
    color: hsl(var(--warning));
    font-size: 0.875rem;
}

.brettrips-warning-list li {
    margin-bottom: 0.25rem;
}

/* Summary Styles */
.brettrips-summary-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brettrips-summary-item {
    display: flex;
    justify-content: space-between;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.brettrips-summary-item span:last-child {
    color: hsl(var(--foreground));
    font-weight: 500;
}

.brettrips-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Details Styles */
.brettrips-details-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.brettrips-details-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brettrips-details-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0;
}

.brettrips-details-subtitle {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.25rem;
}

.brettrips-details-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Details header action buttons */
.brettrips-details-actions .brettrips-btn {
    height: 2.25rem;
    padding: 0.4rem 1.1rem;
    font-size: 0.875rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.brettrips-details-actions .brettrips-btn-outline {
    background-color: transparent;
    border-width: 1px;
    border-color: hsl(var(--border));
    color: hsl(var(--foreground));
}

.brettrips-details-actions .brettrips-btn-outline::before {
    content: '';
    width: 1rem;
    height: 1rem;
    border-radius: 9999px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* small truck icon */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='8' width='10' height='7' stroke='%23ffffff' stroke-width='1.6'/%3E%3Cpath d='M13 9h4.2a1 1 0 0 1 .8.4l2 2.6V15H13V9Z' stroke='%23ffffff' stroke-width='1.6' stroke-linejoin='round'/%3E%3Ccircle cx='7.5' cy='16.5' r='1.5' fill='%23ffffff'/%3E%3Ccircle cx='17' cy='16.5' r='1.5' fill='%23ffffff'/%3E%3C/svg%3E");
}

.brettrips-details-actions .brettrips-btn-outline:hover {
    background-color: hsl(var(--secondary));
}

.brettrips-details-actions .brettrips-btn-danger {
    background-color: #b91c1c;
    color: #ffffff;
}

.brettrips-details-actions .brettrips-btn-danger::before {
    content: '';
    width: 1rem;
    height: 1rem;
    border-radius: 9999px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* circle X icon */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='%23ffffff' stroke-width='1.8'/%3E%3Cpath d='M9 9l6 6M15 9l-6 6' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.brettrips-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .brettrips-details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.brettrips-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brettrips-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brettrips-detail-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.brettrips-detail-value {
    color: hsl(var(--foreground));
    font-weight: 500;
}

.brettrips-tracking-link {
    color: hsl(var(--primary));
    text-decoration: none;
}

.brettrips-tracking-link:hover {
    text-decoration: underline;
}

/* Profile menu */
.rtbrips-profile-menu {
    position: relative;
    display: inline-block;
}

.rtbrips-profile-trigger {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.rtbrips-profile-avatar {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 9999px;
    background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--accent)));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
}

.rtbrips-profile-dropdown {
    position: absolute;
    right: 0;
    margin-top: 0.75rem;
    width: 15rem;
    background: radial-gradient(circle at top, hsl(var(--primary) / 0.18), transparent 55%),
        hsl(var(--card));
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease-out, transform 0.18s ease-out, visibility 0.18s ease-out;
    z-index: 50;
}

.rtbrips-profile-menu.rtbrips-profile-menu--open .rtbrips-profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rtbrips-profile-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid hsl(var(--border));
    margin-bottom: 0.5rem;
}

.rtbrips-profile-avatar-large {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--accent)));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
}

.rtbrips-profile-user {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.rtbrips-profile-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.rtbrips-profile-email {
    font-size: 0.75rem;
    color: #ffffff;
}

.rtbrips-profile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.25rem 0;
}

.rtbrips-profile-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.4rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: hsl(var(--foreground));
    text-decoration: none;
}

.rtbrips-profile-item:hover {
    background-color: hsl(var(--primary));
    color: #000000;
}

.rtbrips-profile-item:active {
    background-color: hsl(var(--primary));
    color: #000000;
}

.rtbrips-profile-footer {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid hsl(var(--border));
}

.rtbrips-profile-signout {
    color: hsl(var(--destructive));
}

.rtbrips-profile-signout:hover,
.rtbrips-profile-signout:active {
    background-color: transparent;
    color: hsl(var(--destructive));
}

.rtbrips-profile-icon {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.rtbrips-profile-icon-submissions {
    /* default: white icon */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='4' width='14' height='16' rx='2' stroke='%23ffffff' stroke-width='1.6'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h3' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.rtbrips-profile-icon-stats {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 18V10M12 18V6M18 18v-4' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.rtbrips-profile-icon-settings {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3.2' stroke='%23ffffff' stroke-width='1.6'/%3E%3Cpath d='M4 12.75h1.4a1 1 0 0 1 .95.68l.26.77a1 1 0 0 0 1.51.52l.66-.44a1 1 0 0 1 1.12 0l.66.44a1 1 0 0 0 1.51-.52l.26-.77a1 1 0 0 1 .95-.68H20' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.rtbrips-profile-icon-signout {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 5H6.8A1.8 1.8 0 0 0 5 6.8v10.4A1.8 1.8 0 0 0 6.8 19H10' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M14 8l3 4-3 4M17 12H10' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* On hover, switch icons to black to match black text */
.rtbrips-profile-item:hover .rtbrips-profile-icon-submissions,
.rtbrips-profile-item:active .rtbrips-profile-icon-submissions {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='4' width='14' height='16' rx='2' stroke='%23000000' stroke-width='1.6'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h3' stroke='%23000000' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.rtbrips-profile-item:hover .rtbrips-profile-icon-stats,
.rtbrips-profile-item:active .rtbrips-profile-icon-stats {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 18V10M12 18V6M18 18v-4' stroke='%23000000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.rtbrips-profile-item:hover .rtbrips-profile-icon-settings,
.rtbrips-profile-item:active .rtbrips-profile-icon-settings {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3.2' stroke='%23000000' stroke-width='1.6'/%3E%3Cpath d='M4 12.75h1.4a1 1 0 0 1 .95.68l.26.77a1 1 0 0 0 1.51.52l.66-.44a1 1 0 0 1 1.12 0l.66.44a1 1 0 0 0 1.51-.52l.26-.77a1 1 0 0 1 .95-.68H20' stroke='%23000000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.rtbrips-profile-item:hover .rtbrips-profile-icon-signout,
.rtbrips-profile-item:active .rtbrips-profile-icon-signout {
    /* match destructive red on hover */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 5H6.8A1.8 1.8 0 0 0 5 6.8v10.4A1.8 1.8 0 0 0 6.8 19H10' stroke='%23ef4444' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M14 8l3 4-3 4M17 12H10' stroke='%23ef4444' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Global preloader */
.brettrips-preloader {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}

.brettrips-loading .brettrips-preloader {
    opacity: 1;
    visibility: visible;
}

.brettrips-preloader-spinner {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: hsl(var(--primary));
    animation: brettrips-spin 0.8s linear infinite;
}

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

/* Page Header */
.brettrips-page-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brettrips-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    border-left: 4px solid hsl(var(--primary));
    padding-left: 1rem;
    margin: 0;
}

/* Express Option */
.brettrips-express-option {
    border-color: hsl(var(--warning-border));
    background-color: hsl(var(--warning-bg));
}

.brettrips-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.brettrips-checkbox-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: hsl(var(--primary));
}

.brettrips-checkbox-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

/* Input Group */
.brettrips-input-group {
    display: flex;
    gap: 0.5rem;
}

.brettrips-input-group .brettrips-input {
    flex: 1;
}

/* Next Steps */
.brettrips-next-steps {
    margin-bottom: 1.5rem;
}

.brettrips-next-steps-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brettrips-highlight-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.brettrips-shipping-info {
    border-top: 1px solid hsl(var(--border));
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brettrips-shipping-info h4 {
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
    font-size: 1rem;
}

.brettrips-address-box {
    background-color: hsl(var(--secondary) / 0.5);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1rem;
}

.brettrips-address-box p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
}

.brettrips-print-button-wrapper {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
}

/* Dialog Styles */
.brettrips-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out, visibility 0.25s ease-out;
}

.brettrips-dialog.brettrips-dialog--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brettrips-dialog-content {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.75rem;
    max-width: 32rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.96);
    transition: transform 0.25s ease-out;
}

.brettrips-dialog.brettrips-dialog--open .brettrips-dialog-content {
    transform: scale(1);
}

/* Wider, no-scroll layout for profile settings dialog */
#rtbrips_settings_dialog .brettrips-dialog-content {
    max-width: 50rem;
    width: 100%;
    max-height: none;
    overflow-y: visible;
}

/* Wider, no-scroll layout for signup dialog */
#brettrips_signup_dialog .brettrips-dialog-content {
    max-width: 40rem;
    width: 100%;
    max-height: none;
    overflow-y: visible;
}

/* Wider confirmation dialog with hidden scrollbar */
#confirm_dialog .brettrips-dialog-content {
    max-width: 56rem;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

#confirm_dialog .brettrips-dialog-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.brettrips-dialog-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brettrips-dialog-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: none;
    background: transparent;
    color: hsl(var(--muted-foreground));
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.brettrips-dialog-close:hover {
    background-color: hsl(var(--muted) / 0.7);
    color: hsl(var(--foreground));
}

#brettrips_login_dialog .brettrips-dialog-content {
    background: radial-gradient(circle at top left, hsl(var(--primary) / 0.18), transparent 55%),
        hsl(var(--card));
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

#brettrips_login_dialog .brettrips-dialog-title::before {
    content: '';
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: radial-gradient(circle at 30% 30%, #ffffff 0, #ffe414 35%, #c79c00 100%);
}

.brettrips-dialog-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.brettrips-dialog-body {
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
    line-height: 1.6;
}

.brettrips-login-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0.75rem;
}

.brettrips-login-extra {
    margin: 0.25rem 0 0.75rem 0;
}

.brettrips-login-error {
    padding: 0.75rem;
    background: hsl(var(--destructive) / 0.1);
    border: 1px solid hsl(var(--destructive));
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: hsl(var(--destructive));
}

#brettrips_login_dialog .brettrips-checkbox-label span {
    color: #ffffff;
}

.brettrips-signup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .brettrips-signup-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.brettrips-signup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .brettrips-signup-actions {
        flex-direction: row;
        justify-content: flex-end;
    }
}

.brettrips-ach-note {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: hsl(var(--foreground));
    background-color: hsl(var(--secondary) / 0.5);
}

.brettrips-dialog-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.brettrips-dialog-point {
    display: flex;
    gap: 0.75rem;
}

.brettrips-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: hsl(var(--primary));
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.brettrips-dialog-summary {
    background-color: hsl(var(--secondary));
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 1rem;
}

.brettrips-dialog-summary p {
    font-size: 0.875rem;
    margin: 0.5rem 0;
    color: hsl(var(--muted-foreground));
}

.brettrips-dialog-summary p strong {
    color: hsl(var(--foreground));
}

.brettrips-dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.brettrips-muted {
    color: hsl(var(--muted-foreground));
}

.brettrips-small {
    font-size: 0.75rem;
}

/* ============================================
   MODERN SUBMISSIONS PAGE STYLES
   ============================================ */

/* Modern Info Banner */
.brettrips-info-banner-modern {
    background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--muted)) 100%);
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.brettrips-info-content-modern {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.brettrips-info-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    line-height: 1.6;
}

.brettrips-info-icon {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Clock Icon */
.brettrips-icon-clock {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23FFE414' stroke-width='1.5'/%3E%3Cpath d='M12 6v6l4 2' stroke='%23FFE414' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Dollar/Money Icon */
.brettrips-icon-dollar {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2v20M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6' stroke='%23FFE414' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.brettrips-info-item-modern strong {
    font-weight: 600;
    color: hsl(var(--foreground));
    display: block;
    margin-bottom: 0.25rem;
}

/* Modern Submissions Section */
.brettrips-submissions-section-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brettrips-submissions-header-modern {
    margin-bottom: 0.5rem;
}

.brettrips-header-content-modern {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.brettrips-title-modern {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, hsl(var(--foreground)) 0%, hsl(var(--muted-foreground)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brettrips-subtitle-modern {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brettrips-stat-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: hsl(var(--primary) / 0.15);
    color: hsl(var(--primary));
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Modern Button Styles */
.brettrips-btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.brettrips-btn-primary-modern {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--accent)) 100%);
    color: #000000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.brettrips-btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    opacity: 0.95;
}

.brettrips-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Plus Icon */
.brettrips-icon-plus {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Modern Empty State */
.brettrips-empty-state-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    background: hsl(var(--card));
    border: 2px dashed hsl(var(--border));
    border-radius: 1rem;
}

.brettrips-empty-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Package/Box Icon */
.brettrips-icon-package {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.27 6.96L12 12.01l8.73-5.05M12 22.08V12' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.brettrips-empty-state-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0 0 0.5rem 0;
}

.brettrips-empty-state-modern p {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    margin: 0 0 1.5rem 0;
}

/* Modern Submissions Grid */
.brettrips-submissions-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .brettrips-submissions-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }
}

@media (min-width: 1024px) {
    .brettrips-submissions-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    }
}

/* Modern Submission Card */
.brettrips-submission-card-modern {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.brettrips-submission-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
    opacity: 0;
    transition: opacity 0.3s;
}

.brettrips-submission-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: hsl(var(--primary) / 0.3);
}

.brettrips-submission-card-modern:hover::before {
    opacity: 1;
}

/* Card Header */
.brettrips-card-header-modern {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.brettrips-card-id-modern {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brettrips-id-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
}

.brettrips-id-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

.brettrips-card-badges-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: flex-start;
}

/* Modern Badge Styles */
.brettrips-badge-modern {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.brettrips-badge-express {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

/* Lightning/Express Icon */
.brettrips-icon-lightning {
    width: 0.875rem;
    height: 0.875rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.brettrips-badge-draft {
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
}

.brettrips-badge-submitted {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    color: hsl(var(--primary-foreground));
}

.brettrips-badge-received,
.brettrips-badge-listed {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
}

.brettrips-badge-paid,
.brettrips-badge-completed {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.brettrips-badge-cancelled {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
}

/* Category Badges */
.brettrips-badge-category {
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
}

.brettrips-badge-category-wwe {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: #ffffff;
}

.brettrips-badge-category-ufc {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
}

/* Selling Category Badges */
.brettrips-badge-selling-category {
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
}

.brettrips-badge-selling-category-fanaticscollect {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.brettrips-badge-selling-category-whatnotcom {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
}

/* Card Body */
.brettrips-card-body-modern {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.brettrips-card-stats-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: hsl(var(--muted) / 0.3);
    border-radius: 0.75rem;
}

.brettrips-stat-item-modern {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brettrips-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
}

.brettrips-stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

/* Payout/Sales Display */
.brettrips-card-payout-modern,
.brettrips-card-sales-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.1));
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--primary) / 0.2);
}

.brettrips-payout-label,
.brettrips-sales-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
}

.brettrips-payout-value,
.brettrips-sales-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

/* Timeline */
.brettrips-card-timeline-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
}

.brettrips-timeline-item-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.brettrips-timeline-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    background: hsl(var(--muted));
    border-radius: 50%;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.875rem;
}

/* Check Icon */
.brettrips-timeline-icon.brettrips-icon-check {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-color: hsl(var(--muted));
}

/* TV/Show Icon */
.brettrips-timeline-icon.brettrips-icon-tv {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='7' width='20' height='15' rx='2' stroke='%23ffffff' stroke-width='1.5'/%3E%3Cpath d='M17 2l-5 5-5-5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-color: hsl(var(--muted));
}

/* Money/Payout Icon */
.brettrips-timeline-icon.brettrips-icon-money {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23ffffff' stroke-width='1.5'/%3E%3Cpath d='M12 6v12M15 9H9.5a2.5 2.5 0 0 0 0 5h5a2.5 2.5 0 0 1 0 5H6' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-color: hsl(var(--muted));
}

.brettrips-timeline-text {
    flex: 1;
}

/* Card Footer */
.brettrips-card-footer-modern {
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
    margin-top: auto;
}

.brettrips-card-action-modern {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--primary));
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s;
}

/* Arrow Right Icon */
.brettrips-icon-arrow-right {
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7' stroke='%23FFE414' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
    transition: transform 0.2s;
}

.brettrips-submission-card-modern:hover .brettrips-card-action-modern {
    transform: translateX(4px);
}

.brettrips-submission-card-modern:hover .brettrips-icon-arrow-right {
    transform: translateX(2px);
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .brettrips-header-content-modern {
        flex-direction: column;
        align-items: stretch;
    }

    .brettrips-btn-modern {
        width: 100%;
        justify-content: center;
    }

    .brettrips-submissions-grid-modern {
        grid-template-columns: 1fr;
    }

    .brettrips-title-modern {
        font-size: 1.75rem;
    }
}

/* ============================================
   MODERN NEW SUBMISSION PAGE STYLES
   ============================================ */

/* Modern Page Header */
.brettrips-page-header-modern {
    margin-bottom: 2rem;
}

.brettrips-btn-back-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color 0.2s;
    border-radius: 0.5rem;
}

.brettrips-btn-back-modern:hover {
    color: hsl(var(--foreground));
    background: hsl(var(--muted) / 0.3);
}

.brettrips-icon-arrow-left {
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 12H5M12 19l-7-7 7-7' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.brettrips-header-content-modern-new {
    margin-top: 0.5rem;
}

.brettrips-page-title-modern {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, hsl(var(--foreground)) 0%, hsl(var(--muted-foreground)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brettrips-page-subtitle-modern {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
}

/* Modern Info Banner */
.brettrips-info-banner-modern-new {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--muted)) 100%);
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.brettrips-info-icon-modern {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.brettrips-icon-info {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23FFE414' stroke-width='1.5'/%3E%3Cpath d='M12 16v-4M12 8h.01' stroke='%23FFE414' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.brettrips-info-text-modern {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.6;
    color: hsl(var(--foreground));
}

.brettrips-info-text-modern p {
    margin: 0.25rem 0;
}

.brettrips-info-text-modern strong {
    color: hsl(var(--foreground));
    font-weight: 600;
}

/* Modern Form Grid */
.brettrips-form-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .brettrips-form-grid-modern {
        grid-template-columns: 1.2fr 1fr;
    }
}

.brettrips-form-left-modern,
.brettrips-form-right-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Modern Card */
.brettrips-card-modern {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s;
}

.brettrips-card-modern:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Express Option Modern */
.brettrips-express-option-modern {
    background: linear-gradient(135deg, hsl(var(--warning-bg)) 0%, hsl(var(--muted)) 100%);
    border-color: hsl(var(--warning-border));
    position: relative;
    overflow: hidden;
}

.brettrips-express-option-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.brettrips-express-header-modern {
    margin-bottom: 1.25rem;
}

.brettrips-checkbox-label-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.brettrips-checkbox-label-modern input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.brettrips-checkbox-custom {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid hsl(var(--border));
    border-radius: 0.375rem;
    background: hsl(var(--card));
    flex-shrink: 0;
    margin-top: 0.125rem;
    position: relative;
    transition: all 0.2s;
}

.brettrips-checkbox-label-modern input[type="checkbox"]:checked + .brettrips-checkbox-custom {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #f59e0b;
}

.brettrips-checkbox-label-modern input[type="checkbox"]:checked + .brettrips-checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.75rem;
    height: 0.75rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.brettrips-checkbox-content-modern {
    flex: 1;
}

.brettrips-checkbox-title-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.brettrips-icon-lightning-inline {
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='%23f59e0b'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.brettrips-checkbox-description-modern {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
    margin: 0;
}

.brettrips-express-details-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
}

.brettrips-express-feature-modern {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    line-height: 1.5;
}

.brettrips-icon-check-small {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23f59e0b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

/* Category Selection */
.brettrips-category-options-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 640px) {
    .brettrips-category-options-modern {
        grid-template-columns: 1fr;
    }
}

.brettrips-category-option-modern {
    display: block;
    cursor: pointer;
}

.brettrips-category-option-modern input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.brettrips-category-card-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: hsl(var(--muted) / 0.3);
    border: 2px solid hsl(var(--border));
    border-radius: 0.75rem;
    transition: all 0.2s;
    text-align: center;
}

.brettrips-category-option-modern input[type="radio"]:checked + .brettrips-category-card-modern {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.15), hsl(var(--accent) / 0.15));
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.brettrips-category-option-modern:hover .brettrips-category-card-modern {
    border-color: hsl(var(--primary) / 0.5);
    background: hsl(var(--muted) / 0.5);
}

.brettrips-category-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
}

.brettrips-icon-wwe {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5' stroke='%23FFE414' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.brettrips-icon-ufc {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23FFE414' stroke-width='1.5'/%3E%3Cpath d='M8 12h8M12 8v8' stroke='%23FFE414' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.brettrips-icon-fanatics {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5' stroke='%23FFE414' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='12' r='2' fill='%23FFE414'/%3E%3C/svg%3E");
}

.brettrips-icon-whatnot {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='%23FFE414' stroke-width='1.5'/%3E%3Cpath d='M9 9h6v6H9z' stroke='%23FFE414' stroke-width='1.5'/%3E%3Cpath d='M3 12h18M12 3v18' stroke='%23FFE414' stroke-width='1.5'/%3E%3C/svg%3E");
}

.brettrips-category-label-modern {
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    display: block;
}

.brettrips-category-desc-modern {
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
    display: block;
}

/* Modern Form Group */
.brettrips-form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brettrips-label-modern {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    display: block;
}

.brettrips-input-wrapper-modern {
    position: relative;
}

.brettrips-input-modern {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    background: hsl(var(--input));
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    color: hsl(var(--foreground));
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s;
}

.brettrips-input-modern:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.brettrips-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    opacity: 0.5;
}

.brettrips-icon-cards {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='18' height='16' rx='2' stroke='%23ffffff' stroke-width='1.5'/%3E%3Cpath d='M3 10h18' stroke='%23ffffff' stroke-width='1.5'/%3E%3C/svg%3E");
}

.brettrips-input-helpers-modern {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brettrips-warning-modern {
    font-size: 0.8125rem;
    color: hsl(var(--warning));
    font-weight: 500;
    margin: 0;
}

.brettrips-description-modern {
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
}

/* Modern Textarea */
.brettrips-textarea-modern {
    width: 100%;
    padding: 0.875rem 1rem;
    background: hsl(var(--input));
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    color: hsl(var(--foreground));
    font-size: 0.9375rem;
    font-family: inherit;
    min-height: 100px;
    resize: vertical;
    transition: all 0.2s;
}

.brettrips-textarea-modern:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.brettrips-textarea-modern::placeholder {
    color: hsl(var(--muted-foreground));
}

/* Modern Summary Card */
.brettrips-summary-card-modern {
    position: sticky;
    top: 2rem;
}

.brettrips-summary-header-modern {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid hsl(var(--border));
}

.brettrips-card-title-modern {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brettrips-icon-summary {
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='18' height='16' rx='2' stroke='%23FFE414' stroke-width='1.5'/%3E%3Cpath d='M8 10h8M8 14h6' stroke='%23FFE414' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.brettrips-summary-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brettrips-summary-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: hsl(var(--muted) / 0.3);
    border-radius: 0.5rem;
}

.brettrips-summary-label-modern {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
}

.brettrips-summary-value-modern {
    font-size: 0.9375rem;
    color: hsl(var(--foreground));
    font-weight: 600;
    text-align: right;
}

.brettrips-summary-fee-modern {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.1));
    border: 1px solid hsl(var(--primary) / 0.2);
}

.brettrips-fee-highlight-modern {
    color: hsl(var(--primary));
    font-size: 1.125rem;
}

.brettrips-status-badge-modern {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Modern Input Group */
.brettrips-input-group-modern {
    display: flex;
    gap: 0.75rem;
}

.brettrips-input-group-modern .brettrips-input-modern {
    flex: 1;
    padding-left: 1rem;
}

.brettrips-btn-secondary-modern {
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    padding: 0.875rem 1.5rem;
    white-space: nowrap;
}

.brettrips-btn-secondary-modern:hover {
    background: hsl(var(--secondary) / 0.8);
}

/* Modern Submit Button */
.brettrips-btn-submit-modern {
    width: 100%;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--accent)) 100%);
    color: #000000;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.brettrips-btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    opacity: 0.95;
}

.brettrips-btn-submit-modern .brettrips-icon-arrow-right {
    width: 1.125rem;
    height: 1.125rem;
}

/* Dialog Warning Icon */
.brettrips-icon-warning {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 9v4M12 17h.01M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0z' stroke='%23f59e0b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
    margin-right: 0.5rem;
}

.brettrips-dialog-title {
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 1023px) {
    .brettrips-summary-card-modern {
        position: static;
    }
}

@media (max-width: 640px) {
    .brettrips-page-title-modern {
        font-size: 1.75rem;
    }

    .brettrips-input-group-modern {
        flex-direction: column;
    }

    .brettrips-btn-secondary-modern {
        width: 100%;
    }
}

/* Print styles for shipping form */
@media print {
    body * {
        visibility: hidden;
    }

    .brettrips-shipping-form,
    .brettrips-shipping-form * {
        visibility: visible;
    }

    .brettrips-shipping-form {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}