/* Profile Section Styles */
.profile-section {
    background-color: #f8f8f8;
    min-height: 100vh;
}

/* Sidebar Styles */
.profile-sidebar {
    background: #F1F1F2;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: none;
    min-height: 600px;
}

.sidebar-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 0;
    border-bottom: none;
}

.profile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-menu li {
    margin-bottom: 10px;
}

.profile-menu li a {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    color: #666;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    background: #F8F8FA;
}

.profile-menu li a .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* .profile-menu li a .icon-circle i {
    color: #888;
} */

.profile-menu li a .icon-circle.orange {
    background: #C96036;
}

.profile-menu li a .icon-circle.gray {
    background: #e0e0e0;
}

.profile-menu li a .icon-circle i {
    font-size: 20px;
    color: #888;
}

.profile-menu li a .icon-circle.gray i {
    color: #888;
}

.profile-menu li a span {
    flex: 1;
    color: #666;
}

.profile-menu li a i.fi-rs-angle-right {
    margin-left: auto;
    font-size: 18px;
    color: #C96036;
}

.profile-menu li a:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profile-menu li.active a {
    background: #F9F0EC;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profile-menu li.active a span {
    color: #C96036;
    font-weight: 600;
}

.profile-menu li.active a .icon-circle {
    background: #C96036 !important;
}

.profile-menu li.active a .icon-circle i {
    color: #fff !important;
}

.profile-menu li.active a span {
    color: #C96036;
    font-weight: 600;
}

.profile-menu li.active a .icon-circle.orange {
    background: #C96036;
}

.profile-menu li.active a .icon-circle.orange i {
    color: #fff;
}

/* Profile Content */
.profile-content {
    background: #F8F8FA;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 600px;
}

.content-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.fav_currency {
    font-size: 12px;
}

/* Wishlist Items */
.wishlist-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wishlist-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0;
    padding-right: 15px;
    border: 0;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.wishlist-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
}

.wishlist-item-image {
    width: 140px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wishlist-item-info {
    flex: 1;
}

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

.item-brand img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: contain;
}

.item-brand span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.item-description {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-remove {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #C96036;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    color: #a84d2a;
}

.btn-remove i {
    font-size: 16px;
}

.wishlist-item-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.item-price .price {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.btn-add-cart {
    color: #C96036;
    border: 1px solid #C46641;
    padding: 9px 50px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #F9F0EC;
}

.btn-add-cart:hover {
    background: #C96036;
    color: #fff;
    transform: translateY(-2px);
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.empty-icon i {
    font-size: 60px;
    color: #C96036;
}

.empty-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.empty-text {
    font-size: 15px;
    color: #888;
    margin-bottom: 30px;
    max-width: 400px;
}

.btn-start-shopping {
    background: #000;
    color: #fff;
    padding: 14px 45px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-start-shopping:hover {
    background: #C96036;
    transform: translateY(-2px);
    color: #fff;
}

/* Order Status Tabs */
.order-status-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding: 8px;
    background: #F9F0EC;
    border-radius: 30px;
}

.order-tab {
    flex: 1;
    padding: 12px 8px;
    background: transparent;
    border: none;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-tab:hover {
    color: #333;
}

.order-tab.active {
    background: #C96036;
    color: #fff;
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #F8F8FA;
    border-bottom: 0;
    padding-bottom: 5px
}

.order-info-group {
    display: flex;
    gap: 25px;
    align-items: center;
}

.order-label {
    font-size: 15px;
    /* font-weight: 600; */
    color: #737D8C;
}

.order-date {
    font-size: 15px;
    color: #737D8C;
}

.order-status {
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.order-status.active {
    background: #d4f8d4;
    color: #28a745;
}

.order-status.shipped {
    background: #fff3cd;
    color: #ffc107;
}

.order-status.cancelled {
    background: #f8d7da;
    color: #dc3545;
}

.order-body {
    padding: 20px 25px;
    background: #F8F8FA;
    padding-top: 0;
    padding-bottom: 0;
}

.order-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.order-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-item-details {
    flex: 1;
}

.item-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 5px 0 0;
}


.order-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 25px;
    background: #F8F8FA;
    border-top: 0;
}


.order-total {
    display: flex;
    align-items: flex-end;
    /* flex-direction: column;
    gap: 5px; */
}

.total-label {
    font-size: 13px;
    color: #888;
}

.total-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.order-actions {
    display: flex;
    gap: 12px;
}

.btn-track {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 8px 40px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-track:hover {
    background: #000;
    color: #fff;
}

.btn-view {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 40px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-view:hover {
    background: #C96036;
    color: #fff;
}

/* Order Details Page */
.order-details-section {
    background: #f8f8f8;
}

.order-progress-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* background: #fff; */
    border-radius: 12px;
    margin-bottom: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 3px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.progress-step.completed .step-circle {
    background: #FF6900;
    border-color: #FF6900;
}

.progress-step.active .step-circle {
    background: #FF6900;
    border-color: #FF6900;
    box-shadow: 0 0 0 4px rgba(201, 96, 54, 0.2);
}

.step-circle i {
    font-size: 20px;
    color: #fff;
}

.step-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.progress-step.completed .step-label,
.progress-step.active .step-label {
    color: #333;
    font-weight: 600;
}

.progress-line {
    width: 100px;
    height: 3px;
    background: #ddd;
    margin: 0 10px;
    position: relative;
    top: -20px;
}

.progress-line.completed {
    background: #FF6900;
}

.delivery-estimate {
    background: transparent;
    padding: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #666;
    border: 0;
    text-align: center;
    margin: auto;
    justify-content: center;
    margin-top: 35px;
    margin-bottom: 10px;
}

.delivery-estimate i {
    font-size: 24px;
    color: #C96036;
}

.delivery-estimate strong {
    color: #333;
}

/* Order Items Section */
.order-items-section {
    background: transparent;
    padding: 0;
    border-radius: 12px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.order-detail-item {
    display: flex;
    gap: 15px;
    padding: 17px 20px 0px 17px;
    border: 0;
    border-radius: 12px;
    margin-bottom: 20px;
    background: #fafafa;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.order-detail-item .item-image {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-detail-item .item-image img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

.order-detail-item .item-info {
    flex: 1;
}

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

.item-vendor img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: contain;
}

.item-vendor span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.order-detail-item .item-title {
    font-size: 19px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.item-compatibility {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    padding: 0;
    /* background: #fff; */
    border-radius: 8px;
    font-size: 14px;
}

.item-compatibility span:first-child {
    color: #888;
}

.compatibility-value {
    color: #333;
    font-weight: 600;
}


.item-pricing {
    /* background: #fff; */
    padding: 0;
    border-radius: 0;
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3px;
    font-size: 14px;
}

.price-row:last-child {
    margin-bottom: 0;
    padding-top: 8px;
    border-top: 0;
}

.price-row span:first-child {
    color: #888;
}

.price-row .price,
.price-row .quantity,
.price-row .subtotal {
    color: #333;
    font-weight: 600;
}

.item-actions {
    display: flex;
    gap: 12px;
}

.btn-action-link {
    padding: 10px 35px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}


.btn-action-link:first-child {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-action-link:first-child:hover {
    border-color: #999;
    color: #000;
}

.btn-action-link:last-child {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.btn-action-link:last-child:hover {
    background: #C96036;
    border-color: #C96036;
}

/* Payment Summary Card */
.payment-summary-card, .shipping-address-card {
    background: #fafafa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    color: #666;
}

.summary-row .value {
    color: #333;
    font-weight: 600;
}

.summary-row.total {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.summary-row.total .value {
    color: #C96036;
}

.payment-method,
.shipping-method {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 0px;
    background: #fafafa;
    border-radius: 8px;
    margin-top: 20px;
    justify-content: flex-start;
    border: 0;
}

.payment-method i,
.shipping-method i {
    font-size: 24px;
    color: #C96036;
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.method-label {
    font-size: 13px;
    color: #888;
}

.method-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

/* Shipping Address Card */
.address-info {
    margin-bottom: 20px;
}

.customer-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.address-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.contact-info i {
    font-size: 16px;
    color: #C96036;
}

/* Responsive */
@media (max-width: 991px) {
    .wishlist-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wishlist-item-action {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .order-progress-wrapper {
        overflow-x: auto;
    }
    
    .progress-line {
        width: 60px;
    }
    
    .order-detail-item {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .profile-content {
        padding: 25px 20px;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .order-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .order-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-track,
    .btn-view {
        width: 100%;
        text-align: center;
    }
}


/* My Vehicle Page Styles */
.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.btn-add-vehicle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #C96036;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-vehicle:hover {
    background: #a84d2a;
    transform: translateY(-2px);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.vehicle-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
}

.vehicle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fafafa;
}

.vehicle-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.vehicle-badge.primary {
    background: #d4f8d4;
    color: #28a745;
}

.btn-menu {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.btn-menu:hover {
    color: #333;
}

.vehicle-image {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vehicle-info {
    padding: 20px;
}

.vehicle-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.vehicle-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

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

.detail-item i {
    font-size: 16px;
    color: #C96036;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-badge {
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.vehicle-actions {
    display: flex;
    border-top: 1px solid #eee;
}

.vehicle-actions button {
    flex: 1;
    padding: 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-edit {
    color: #666;
    border-right: 1px solid #eee;
}

.btn-edit:hover {
    background: #f5f5f5;
    color: #333;
}

.btn-delete {
    color: #dc3545;
}

.btn-delete:hover {
    background: #fff5f5;
}

/* Add Vehicle Card */
.add-vehicle-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border: 2px dashed #ddd;
    background: #fafafa;
}

.add-vehicle-card:hover {
    border-color: #C96036;
    background: #fff;
}

.add-vehicle-content {
    text-align: center;
    padding: 30px;
}

.add-icon {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.add-icon i {
    font-size: 40px;
    color: #C96036;
}

.add-vehicle-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.add-vehicle-content p {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-add-now {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-now:hover {
    background: #C96036;
}

/* Account Settings Page Styles */
.account-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.account-section:last-of-type {
    border-bottom: none;
}

.profile-picture-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.profile-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

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

.profile-info h5 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.user-email {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.btn-change-photo {
    background: transparent;
    border: 2px solid #C96036;
    color: #C96036;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-change-photo:hover {
    background: #C96036;
    color: #fff;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.account-form {
    margin-top: 20px;
}

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

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

.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #C96036;
    box-shadow: 0 0 0 3px rgba(201, 96, 54, 0.1);
}

.form-control::placeholder {
    color: #aaa;
}

select.form-control {
    cursor: pointer;
}

.account-actions {
    display: flex;
    gap: 15px;
    padding-top: 20px;
}

.btn-save-changes {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save-changes:hover {
    background: #C96036;
}

.btn-cancel {
    background: transparent;
    border: 2px solid #ddd;
    color: #666;
    padding: 14px 40px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    border-color: #999;
    color: #333;
}

/* Responsive for My Vehicle and Account Settings */
@media (max-width: 767px) {
    .vehicle-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-add-vehicle {
        width: 100%;
        justify-content: center;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-picture-section {
        flex-direction: column;
        text-align: center;
    }
    
    .account-actions {
        flex-direction: column;
    }
    
    .btn-save-changes,
    .btn-cancel {
        width: 100%;
    }
}


/* New Account Settings Design */
.account-settings-content {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

/* Profile Header Card with Pattern Background */
.profile-header-card {
    position: relative;
    /* background: #fff; */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.profile-bg-pattern {
    /* height: 180px; */
    /* background: linear-gradient(135deg, #f5d5c8 0%, #e8b5a0 50%, #d89b82 100%); */
    /* position: relative; */
    /* overflow: hidden; */
}

.profile-bg-pattern .shape-left {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    /* opacity: 0.6; */
}

.profile-bg-pattern .shape-right {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    /* opacity: 0.6; */
}

.profile-avatar-wrapper {
    /* position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%); */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -7%;
}

.profile-avatar-xl {
    width: 105px;
    height: 105px;
    border-radius: 8px;
    overflow: hidden;
    background: #e3f2fd;
    border: 0;
    box-shadow: none;
}

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

.profile-user-name {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-top: 90px;
    margin-bottom: 0;
    padding-bottom: 15px;
}

/* Account Form Card */
.account-form-card {
    /* background: #fff; */
    border-radius: 0;
    padding: 15px 40px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.form-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* New Form Styles */
.account-form-new {
    margin: 0;
}

.form-group-new {
    margin-bottom: 25px;
}

.form-label-new {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.form-control-new {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #fff;
    height: 50px;
}

.form-control-new:focus {
    outline: none;
    border-color: #C96036;
    box-shadow: 0 0 0 3px rgba(201, 96, 54, 0.08);
}

.form-control-new::placeholder {
    color: #aaa;
}

select.form-control-new {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

/* Phone Input Wrapper */
.phone-input-wrapper {
    position: relative;
}

.phone-prefix {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    z-index: 1;
}

.flag-icon {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
}

.phone-code {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.phone-prefix i {
    font-size: 12px;
    color: #999;
}

.form-control-new.with-prefix {
    padding-left: 130px;
}

.phone-prefix::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: #e0e0e0;
}

/* Save Button Wrapper */
.save-button-wrapper {
    display: flex;
    justify-content: flex-end;
    padding: 0;
}

.btn-save-account {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 50px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-save-account:hover {
    background: #C96036;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 96, 54, 0.3);
}

/* Responsive for New Account Settings */
@media (max-width: 991px) {
    .account-form-card {
        padding: 25px 20px;
    }
    
    .phone-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .phone-code-selector {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .profile-bg-pattern {
        height: 140px;
    }
    
    .profile-avatar-wrapper {
        top: 80px;
    }
    
    .profile-avatar-xl {
        width: 110px;
        height: 110px;
    }
    
    .profile-user-name {
        margin-top: 70px;
        font-size: 20px;
    }
    
    .save-button-wrapper {
        justify-content: center;
    }
    
    .btn-save-account {
        width: 100%;
    }
}


/* Settings Icon Button in Dropdown */
.settings-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f5f5f5;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
}

.settings-icon-btn:hover {
    background: #C96036;
    color: #fff;
}

.settings-icon-btn i {
    font-size: 18px;
}
