/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f7;
    overflow-x: hidden;
}

.error-txt {
    color: red !important;
    padding: 5px !important;
}

.required-fl { color: red; font-weight: 500 }

.modal-dialog-bottom {
  margin: 0;
  width: 100%;
  max-width: var(--mobile-container-width, 414px); /* responsive */
  position: absolute;
  /*left: 50%;*/
  bottom: 55px;
  transform: translateX(-50%);
  height: auto;
  max-height: calc(100% - 155px); /* keep space for bottom */
  display: flex;
  flex-direction: column;
}

.modal-dialog-bottom .modal-content {
  max-height: 100%;
  overflow-y: auto; /* allow scroll inside */
}

.event-vendor-name { color: #858585 !important; }

/* Toast container - full width and safe area padding */
.toast-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    max-width: 100% !important;
    padding-top: calc(env(safe-area-inset-top, 0px) + 12px); /* only top safe area */
    /*padding-right: 16px;
    padding-bottom: 12px;
    padding-left: 16px;*/
    z-index: 9999 !important;
    display: flex !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

/* Toast base style */
.toast {
    width: 100% !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    /*padding: 14px 20px !important;*/
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    opacity: 1 !important; /* remove default fading */
}

/* Close button */
.toast-close-button {
    color: #fff !important;
    opacity: 0.9;
    padding: 10px !important;
    /*font-size: 18px;*/
    /*right: 12px;*/
    /*top: 12px;*/
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
}
.toast-close-button:hover {
    opacity: 1;
}

/* Toast types (solid background colors) */
.toast-success {
    background-color: #28a745 !important; /* Green */
}

.toast-error {
    background-color: #dc3545 !important; /* Red */
}

.toast-warning {
    background-color: #ffc107 !important; /* Yellow/Amber */
    color: #000 !important;
}

.toast-info {
    background-color: #17a2b8 !important; /* Teal/Blue */
}


.modal-dialog-bottom .modal-content {
  border-radius: 30px 30px 0 0 !important;
}

.modal-dialog-bottom .modal-footer,
.modal-dialog-bottom .modal-header
{
  border-top: 0px !important;
  border-bottom: 0px !important;
}

.mobile-container {
    width: 100%;
    --mobile-container-width: 430px; /* define once */
    max-width: var(--mobile-container-width);
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Status Bar */
.status-bar {
    background: #FF9500;
    color: white;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 5px;
}

/* Header */
.header {
    background: #FF9500;
    color: white;
    padding: calc(env(safe-area-inset-top, 0px) + 12px) 20px 12px 20px;
    /*padding: calc(env(safe-area-inset-top, 0px) + 10px) 20px 10px 20px;*/
    display: flex;
    align-items: center;
    position: relative;
}

.header-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    /*text-align: center;*/
}

.back-icon, .close-icon {
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    left: 20px;
}

.search-container {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255,255,255,0.9);
    font-size: 16px;
    outline: none;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    background: #e9ecef;
    color: #6c757d;
}

.step.active {
    background: #4285f4;
    color: white;
}

.step.completed {
    background: #4285f4;
    color: white;
}

/* Main Content */
.main-content {
    padding: 20px;
    padding-bottom: 100px;
}

/* Greeting Section */
.greeting-section {
    margin-bottom: 30px;
}

.greeting {
    font-size: 28px;
    font-weight: 400;
    color: #1d1d1f;
    margin-bottom: 5px;
}

.name {
    color: #FF9500;
    font-weight: 600;
}

.sub-greeting {
    color: #86868b;
    font-size: 16px;
    margin: 0;
}

/* Plan Event Card */
.plan-event-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.2s ease;
    direction: inherit; /* inherit from html/body */
}

.plan-event-card:hover {
    transform: translateY(-2px);
}

.plan-icon {
    width: 50px;
    height: 50px;
    background: #FF9500;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Direction-aware margin for icon */
html[dir="ltr"] .plan-icon {
    margin-right: 15px;
}
html[dir="rtl"] .plan-icon {
    margin-left: 15px;
}

.plan-icon i {
    color: white;
    font-size: 24px;
}

.plan-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #1d1d1f;
}

.plan-content p {
    color: #86868b;
    font-size: 14px;
    margin: 0;
}

.plan-event-card .fa-chevron-right {
    font-size: 14px;
    color: #c7c7cc;
    margin-left: auto;
}

html[dir="rtl"] .fa-chevron-right {
    transform: rotate(180deg);
    margin-left: 0;
    margin-right: auto;
}

/* Section Titles */
.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/*.category-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.2s ease;
}*/

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity here */
    z-index: 1;
}

.category-card > * {
    position: relative;
    z-index: 2;
}

.category-card {
    border-radius: 15px;
    padding: 20px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    color: white; /* Optional: ensures text is visible on dark overlay */
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-2px);
}

.category-image {
    height: 44px;
    width: 44px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px; /* 'auto' horizontally centers the block element */
}

.birthday-bg {
    background: #fff !important;
}

.wedding-bg {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.category-icon {
    font-size: 32px;
    color: white;
}

.category-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    margin: 0;
    line-height: 142.934%; /* 20.011px */
}

/* Vendor Cards */
.vendor-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    direction: inherit; /* Allow parent <html dir="rtl"> to control flow */
}

.vendor-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

html[dir="ltr"] .vendor-image {
    margin-right: 15px;
}
html[dir="rtl"] .vendor-image {
    margin-left: 15px;
}

.vendor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-info {
    flex: 1;
}

.vendor-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 2px;
}

.vendor-info p {
    color: #86868b;
    font-size: 13px;
    margin-bottom: 5px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.stars {
    color: #FF9500;
    font-size: 12px;
}

.rating-value {
    font-size: 12px;
    color: #86868b;
}

.vendor-location {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 3px;
}

.price-tag {
    font-size: 14px;
    font-weight: bold;
    color: #FF9500;
    margin-left: 10px;
}

html[dir="rtl"] .price-tag {
    margin-left: 0;
    margin-right: 10px;
}

.price-tag {
    font-size: 16px;
    font-weight: 700;
    color: #34c759;
}

/* Special Offers */
.offer-card {
    background: linear-gradient(135deg, #ff9500, #ffb347);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px dashed #ff9500;
}

.offer-content h3 {
    color: #1d1d1f;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.offer-content p {
    color: #1d1d1f;
    font-size: 14px;
    margin: 0;
}

.view-offers-btn {
    background: #ff9500;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Service Types Grid */
.service-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.service-type-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-type-card:hover {
    transform: translateY(-2px);
}

.service-type-card.selected {
    border-color: #4285f4;
    /*background: #f8f9ff;*/
}

.sub-service-type-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sub-service-type-card:hover {
    transform: translateY(-2px);
}

.sub-service-type-card.selected {
    border-color: #4285f4;
    /*background: #f8f9ff;*/
}

.service-type-icon {
    font-size: 32px;
    color: #FF9500;
    margin-bottom: 15px;
}

.service-type-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.sub-service-type-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

/* Form Styles */
.form-section {
    margin-bottom: 30px;
}

.form-title {
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #86868b;
    font-size: 14px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #86868b;
    font-size: 16px;
}

/* LTR layout */
:dir(ltr) .input-icon {
    left: 15px;
}

:dir(ltr) .custom-input {
    padding: 15px 15px 15px 45px;
}

/* RTL layout */
:dir(rtl) .input-icon {
    right: 15px;
    left: auto;
}

:dir(rtl) .custom-input {
    padding: 15px 45px 15px 15px;
    text-align: right !important;
}

.custom-input {
    width: 100%;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 16px;
    background: white;
    outline: none;
    transition: border-color 0.2s ease;
}


.custom-input:focus {
    border-color: #4285f4;
}

.custom-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 16px;
    background: white;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #86868b;
    pointer-events: none;
}

.help-text {
    margin-top: 10px;
    font-size: 12px;
    color: #86868b;
    font-style: italic;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.service-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translateY(-2px);
}

.service-card.selected {
    border-color: #4285f4;
    background: #f8f9ff;
}

.service-icon {
    font-size: 24px;
    color: #FF9500;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
    line-height: 1.3;
}

/* Search Summary */
.search-summary {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-summary h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 15px;
    text-align: center;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #86868b;
}

.summary-item i {
    color: #FF9500;
    width: 16px;
}

/* Sort and Filter Bar */
.sort-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sort-section {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1d1d1f;
}

.sort-select {
    border: none;
    background: none;
    font-size: 14px;
    color: #1d1d1f;
    cursor: pointer;
}

.filter-btn {
    background: none;
    border: none;
    color: #86868b;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Filter Options */
.filter-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding: 5px 0;
}

.filter-chip {
    background: #f1f3f4;
    color: #5f6368;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip.active {
    background: #4285f4;
    color: white;
}

/* Vendor Result Cards */
.vendor-result-card {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.vendor-image-large {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vendor-image-large .cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* dim the image */
}

.vendor-badge-with-name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 8px;
    gap: 10px;
    direction: ltr; /* Default direction */
}

/* RTL Support */
html[dir="rtl"] .vendor-badge-with-name {
    left: auto;
    right: 10px;
    direction: rtl;
}

.vendor-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    /*border: 1px solid white;*/
    flex-shrink: 0;
}

.vendor-badge.featured {
    background: #4285f4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.badge-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-result-info {
    padding: 20px;
}

.vendor-result-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 5px;
}

.vendor-result-info > p {
    color: #86868b;
    font-size: 14px;
    margin-bottom: 15px;
}

.vendor-details {
    margin-bottom: 15px;
}

.certification {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #1d1d1f;
}

.certification i {
    color: #4285f4;
}

.rating-large {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-large .stars {
    color: #FF9500;
    font-size: 16px;
}

.rating-large .rating-value {
    font-size: 14px;
    color: #86868b;
}

.order-id {
    color: #FF9500 !important;
}

.vendor-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tag {
    background: #f1f3f4;
    color: #5f6368;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    white-space: nowrap;
}

.vendor-description {
    font-size: 14px;
    color: #86868b;
    line-height: 1.5;
    margin-bottom: 15px;
}

.vendor-portfolio {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.portfolio-images {
    display: flex;
    gap: 5px;
}

.portfolio-images img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.portfolio-text {
    font-size: 14px;
    color: #1d1d1f;
    font-weight: 500;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #86868b;
}

.response-time i {
    color: #FF9500;
}

.vendor-actions {
    display: flex;
    gap: 7px;
}

.contact-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e9ecef;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.contact-btn i {
    color: #86868b;
    font-size: 18px;
}

.view-services-btn {
    flex: 1;
    background: #FF9500;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Next Button */
.next-button-container {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 374px;
    z-index: 10;
}

.next-btn {
    width: 100%;
    background: #FF9500;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(255, 149, 0, 0.3);
    position: relative !important; /* Needed for z-index to work */
    z-index: 2000 !important;       /* Higher than header */
    margin-bottom: 80px !important; /* space above bottom nav or header */
}

.next-btn:hover {
    background: #e6850e;
}

[dir="rtl"] .fa-arrow-right {
    transform: rotate(180deg);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--mobile-container-width);
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #e9ecef;
    z-index: 2000 !important;
    border-radius: 8px 8px 0px 0px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    min-width: 60px;
}

.nav-item i {
    font-size: 20px;
    color: #86868b;
}

.nav-item span {
    font-size: 10px;
    color: #86868b;
}

.nav-item.active i,
.nav-item.active span {
    color: #FF9500;
}

/* Responsive Design */
@media (max-width: 375px) {
    .mobile-container {
        max-width: 100%;
    }
    
    .categories-grid,
    .service-types-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        padding: 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vendor-result-card,
.vendor-card,
.category-card,
.service-card,
.service-type-card,
.sub-service-type-card {
    animation: fadeIn 0.5s ease forwards;
    /*text-align: center;*/
}

/* Hover Effects */
.plan-event-card:hover,
.category-card:hover,
.vendor-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 149, 0, 0.4);
}

/* Focus States */
.custom-input:focus,
.custom-select:focus {
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}

.service-card:focus,
.sub-service-card:focus,
.service-type-card:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}

/* Payment Methods Styles */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.payment-method-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.payment-method-card:hover {
    border-color: #4285f4;
}

.payment-radio {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    accent-color: #4285f4;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.payment-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.google-pay-icon {
    background: #4285f4;
}

.google-g {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.mastercard-icon {
    background: white;
    border: 1px solid #e9ecef;
}

.mastercard-circles {
    display: flex;
    align-items: center;
}

.circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.circle.red {
    background: #eb001b;
    margin-right: -6px;
}

.circle.yellow {
    background: #ff5f00;
}

.add-payment-card {
    background: white;
    border: 2px dashed #e9ecef;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.add-payment-card:hover {
    border-color: #4285f4;
}

.add-payment-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 5px;
}

.add-payment-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.add-payment-icon {
    width: 40px;
    height: 40px;
    background: #4285f4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-payment-icon i {
    color: white;
    font-size: 18px;
}

.add-payment-text {
    color: #86868b;
    font-size: 14px;
}

/* Portfolio Styles */
.portfolio-content {
    padding: 10px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.portfolio-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Request Sent Styles */
.request-sent-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.success-message {
    max-width: 300px;
}

.success-title {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.highlight {
    color: #FF9500;
}

.success-subtitle {
    color: #86868b;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.success-icon {
    margin-bottom: 40px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 149, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle i {
    font-size: 48px;
    color: #FF9500;
}

/* Review Booking Styles */
.booking-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.booking-section.clickable {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.booking-section.clickable:hover {
    transform: translateY(-2px);
}

.booking-section .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #1d1d1f;
}

.info-icon {
    color: #FF9500;
    width: 20px;
}

.vendor-booking-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vendor-booking-card .vendor-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.vendor-booking-card .vendor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 5px;
}

.vendor-details p {
    color: #86868b;
    font-size: 14px;
    margin-bottom: 5px;
}

.duration {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #86868b;
    font-size: 12px;
}

.address-info {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    font-size: 16px;
    color: #1d1d1f;
}

.payment-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.google-pay-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.google-pay-logo .google-g {
    width: 24px;
    height: 24px;
    background: #4285f4;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.pay-text {
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
}

.message-input {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 16px;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s ease;
}

.message-input:focus {
    border-color: #4285f4;
}

.price-breakdown {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 16px;
    color: #1d1d1f;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 0;
    border-top: 1px solid #e9ecef;
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
}

/* Vendor Profile Styles */
.vendor-hero {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-hero .back-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 18px;
    z-index: 10;
    /*background: rgba(0,0,0,0.3);*/
    padding: 8px;
    border-radius: 50%;
}

.favorite-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 18px;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
}

.vendor-profile-content {
    padding: 20px;
    padding-bottom: 100px;
}

.vendor-profile-header {
    margin-bottom: 30px;
}

.vendor-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.vendor-title h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.vendor-badge-small {
    width: 24px;
    height: 24px;
    background: #FF9500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-badge-small i {
    color: white;
    font-size: 12px;
}

.vendor-category {
    color: #86868b;
    font-size: 16px;
    margin-bottom: 15px;
}

.vendor-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/*.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1d1d1f;
}*/

/*.stat-item i {
    color: #4285f4;
    width: 16px;
}*/

.about-text {
    color: #86868b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #4285f4;
    cursor: pointer;
}

.vendor-contact {
    margin-top: 20px;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.contact-info small {
    font-size: 12px;
    font-weight: 400;
    color: #858585;
    margin: 0;
}

.contact-badge {
    width: 20px;
    height: 20px;
    background: #FF9500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.contact-badge i {
    color: white;
    font-size: 10px;
}

.service-package {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.service-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #86868b;
    font-size: 12px;
}

.service-duration i {
    color: #4087ED;
}

.service-description {
    color: #86868b;
    font-size: 14px;
    margin-bottom: 15px;
}

.service-features {
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #1d1d1f;
}

.feature-item i {
    color: #34c759;
    font-size: 12px;
    width: 16px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-size: 18px;
    font-weight: 600;
    color: #34c759;
}

.book-service-btn {
    background: #FF9500;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.add-to-event {
    background: #FF9500;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.book-service-btn:hover {
    background: #e6850e;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.see-all-btn {
    background: none;
    border: none;
    color: #4285f4;
    font-size: 14px;
    cursor: pointer;
}

.portfolio-preview {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.portfolio-preview img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-summary .stars {
    color: #FF9500;
    font-size: 14px;
}

.rating-text {
    color: #86868b;
    font-size: 14px;
}

.reviews-list {
    margin-top: 15px;
}

.review-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.review-rating {
    color: #FF9500;
    font-size: 12px;
}

.review-date {
    color: #86868b;
    font-size: 12px;
    margin-inline-start: auto;
}

.review-text {
    color: #86868b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Chat Styles */
.chat-search {
    margin-bottom: 20px;
}

.chat-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.chat-item {
    display: flex;
    align-items: center;
    padding: 15px 5px;
    /*border-bottom: 1px solid #f0f0f0;*/
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 8px;
}

.chat-item:hover {
    background-color: #f8f9fa;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-inline-end: 15px;
}

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

.chat-info {
    flex: 1;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.chat-name {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.chat-time {
    font-size: 12px;
    color: #86868b;
}

.chat-preview {
    font-size: 14px;
    color: #86868b;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-badge {
    width: 20px;
    height: 20px;
    background: #4285f4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-inline-start: 10px;
}

/* Chat Detail Styles */
.chat-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.chat-header-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
}

.chat-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 90vh;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 150px !important;
}

.date-separator {
    text-align: center;
    margin: 20px 0;
}

.date-separator span {
    background: #f0f0f0;
    color: #86868b;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
}

.message {
    display: flex;
    margin-bottom: 10px;
}

.message.sent {
    justify-content: flex-end;
}

.message.received {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.message.sent .message-bubble {
    background: #FF9500;
    color: white;
    border-bottom-right-radius: 4px;
}

.message.received .message-bubble {
    background: #f0f0f0;
    color: #1d1d1f;
    border-bottom-left-radius: 4px;
}

.message-input-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 414px;
    background: white;
    padding: 15px 20px;
    z-index: 1000;
    /*border-top: 1px solid #e9ecef;*/
}

.message-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px 15px;
}

.attachment-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #FF9500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.attachment-btn i {
    color: white;
    font-size: 14px;
}

.message-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    padding: 8px 0;
}

.send-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #FF9500;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.send-btn i {
    color: white;
    font-size: 14px;
}

/* Events Styles */
.events-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #86868b;
    cursor: pointer;
    position: relative;
}

.tab.active {
    color: #FF9500;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FF9500;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-top: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.event-header {
    margin-bottom: 15px;
}

.event-title {
    font-size: 16px;
    font-weight: 400;
    color: #242424;
    margin: 0;
}

.event-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #858585;
}

.event-detail-item i {
    color: #4285f4;
    width: 16px;
}

.event-progress {
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-header span {
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
}

.progress-percentage {
    color: #4285f4;
}

.progress-percentage.complete {
    color: #34c759;
}

.progress-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    width: 100% !important;
}

.progress-fill {
    height: 100%;
    background: #4285f4;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-fill.complete {
    background: #34c759;
}

.event-services {
    margin-bottom: 20px;
}

.event-services h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.classic-h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.service-status {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-status.completed {
    /*background: #34c759;*/
    color: #34c759;
}

.service-status.pending {
    /*background: #FF9500;*/
    color: #FF9500;
}

.service-status i {
    font-size: 12px;
}

.service-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-name {
    font-size: 14px;
    color: #242424;
    font-weight: 500;
}

.vendor-name {
    /*font-size: 12px;*/
    color: #fff !important;
}

.edit-event-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    color: #86868b;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-event-btn:hover {
    border-color: #4285f4;
    color: #4285f4;
    background: transparent;
}

/* Profile Styles */
.profile-content {
    padding-bottom: 100px;
}

.profile-header {
    text-align: center;
    background: white;
    margin-bottom: 20px;
    border-radius: 10px !important;
}

.profile-avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

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

.profile-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: #FF9500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

.profile-badge i {
    color: white;
    font-size: 12px;
}

.profile-name {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 5px;
}

.profile-email {
    color: #86868b;
    font-size: 16px;
    margin-bottom: 15px;
}

.membership-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff3cd;
    color: #856404;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.membership-badge i {
    color: #ffc107;
}

/*.profile-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}*/

/*.stat-item {
    text-align: center;
}*/

/*.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}*/

.stat-item:nth-child(1) .stat-icon {
    background: rgba(255, 149, 0, 0.5);
    color: #FF9500;
}

.stat-item:nth-child(2) .stat-icon {
    background: rgba(255, 59, 48, 0.5);
    color: #ff3b30;
}

.stat-item:nth-child(3) .stat-icon {
    background: rgba(255, 204, 0, 0.5);
    color: #ffcc00;
}

.stat-item:nth-child(4) .stat-icon {
    background: rgba(66, 133, 244, 0.5);
    color: #4285f4;
}

/*.stat-number {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 2px;
}*/

/*.stat-label {
    font-size: 12px;
    color: #86868b;
    line-height: 1.2;
}*/

/*.stat-number {
    font-size: 14px;
    text-align: center;
}*/

.profile-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.menu-list {
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
    direction: inherit;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background-color: #f8f9fa;
    border-radius: 12px;
}

.menu-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 149, 0, 0.1);
    color: #FF9500;

    /* Margin based on direction */
    margin-inline-end: 15px;
}

.menu-text {
    flex: 1;
    font-size: 16px;
    color: #1d1d1f;
}

.menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-subtitle {
    font-size: 12px;
    color: #86868b;
    margin-top: 2px;
}

.menu-arrow {
    font-size: 14px;
    color: #c0c0c0;
    margin-inline-start: 10px;
    transition: transform 0.2s ease;

    /* Flip arrow in RTL */
    [dir="rtl"] & {
        transform: rotate(180deg);
    }
}

.toggle-switch {
    width: 50px;
    height: 30px;
    background: #e9ecef;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-switch.active {
    background: #4285f4;
}

.toggle-slider {
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(20px);
}

.logout-section {
    padding: 20px;
}

.logout-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #ff3b30;
    border-radius: 25px;
    color: #ff3b30;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background: #ff3b30;
    color: white;
}

/* Edit Profile Styles */
.edit-profile-content {
    padding-bottom: 120px;
}

.edit-photo-section {
    text-align: center;
    padding: 30px 20px;
}

.edit-profile-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 440px;
    overflow: hidden;
}

.edit-profile-header {
    background: linear-gradient(135deg, #ff9500 0%, #ffb347 100%);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.back-arrow {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.back-arrow:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.edit-profile-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.edit-profile-content {
    padding: 40px 30px;
}

.edit-profile-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.edit-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    border: 4px solid #f0f0f0;
    background: #eee;
}

.edit-photo-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #ff9500 0%, #ffb347 100%);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 149, 0, 0.3);
    cursor: pointer;
    font-size: 16px;
    border: 3px solid white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.edit-photo-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.4);
}

.change-photo-text {
    text-align: center;
    color: #ff9500;
    font-weight: 500;
    margin-bottom: 40px;
    cursor: pointer;
    transition: color 0.2s;
}

.change-photo-text:hover {
    color: #e68400;
}

.edit-photo-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: #FF9500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

.edit-photo-badge i {
    color: white;
    font-size: 12px;
}

.change-photo-btn {
    background: transparent;
    border: none;
    color: #FF9500;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.edit-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 8px;
    display: block;
}

.custom-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 16px;
    background: white;
    outline: none;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.custom-textarea:focus {
    border-color: #4285f4;
}

.edit-actions {
    display: flex;
    gap: 15px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 374px;
}

.cancel-btn {
    flex: 1;
    padding: 15px;
    background: #f8f9fa;
    border: none;
    border-radius: 25px;
    color: #86868b;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.save-btn {
    flex: 1;
    padding: 15px;
    background: #FF9500;
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.header-menu {
    position: absolute;
    inset-inline-end: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.vendor-profile-content .stat-item .fas { color: #4087ED }
.vendor-profile-content .stat-item span { color: #242424 }

.payment-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-option:hover:not(.disabled) {
    border-color: #007bff;
    background-color: #f8f9ff;
}

.payment-option.selected {
    border-color: #007bff;
    background-color: #f8f9ff;
}

.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #fafafa;
}

.payment-option input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #007bff;
}

.payment-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.payment-icon {
    margin-right: 12px;
    font-size: 24px;
}

.credit-card-icon {
    color: #4169e1;
}

.google-pay-logo {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
}

.google-g {
    background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc05, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    margin-right: 2px;
}

.pay-text {
    color: #5f6368;
}

.payment-label {
    font-weight: 500;
    color: #333;
}

.disabled-text {
    font-size: 12px;
    color: #999;
    margin-left: 8px;
    font-style: italic;
}

.chevron {
    margin-left: auto;
    color: #ccc;
    font-size: 16px;
}

.card-form {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9ff;
    border-radius: 8px;
    border: 1px solid #e0e8ff;
    display: none;
}

.card-form.show {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group {
    flex: 1;
}

.card-icons {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.card-icon {
    width: 32px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.visa { background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCA0MCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjI0IiByeD0iNCIgZmlsbD0iIzFBMUY3MSIvPgo8cGF0aCBkPSJNMTYuNzUgN0gxOC4yNUwxNS41IDE3SDE0TDE2Ljc1IDdaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K'); }
.mastercard { background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCA0MCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjI0IiByeD0iNCIgZmlsbD0iI0VCMDAxQiIvPgo8Y2lyY2xlIGN4PSIxNSIgY3k9IjEyIiByPSI3IiBmaWxsPSIjRkY1RjAwIi8+CjxjaXJjbGUgY3g9IjI1IiBjeT0iMTIiIHI9IjciIGZpbGw9IiNGRkY1RjAiLz4KPC9zdmc+Cg=='); }