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

body {
   font-family: 'Poppins', sans-serif;
    color: #1b1b18;
    background-color: #ffffff;
    line-height: 1.6;
}

/* Remove underline from all links styled as buttons */
a[class*="btn"],
a.btn,
a.po-continue,
a.ps-continue,
a.po1-back,
a.po2-back,
a.po2-back-btn,
a.po2-continue,
a.po3-back,
a.po3-back-btn,
a.po3-continue,
a.po4-back,
a.po4-back-btn,
a.po4-publish,
a.ps1-back,
a.ps2-btn,
a.ps4-back-btn,
a.ps4-publish,
a.item-card-link,
a.back-link,
a.view-all-link,
a.icon-btn,
a.deposit-success-header-bar__btn,
a.deposit-btn-chat,
a.deposit-help-card__btn,
a.back-history-btn {
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Main header – only element that sticks; stays on top when scrolling */
header {
    background: #ffffff;
    border-bottom: 1px solid #e3e3e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1100;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-section {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #1b1b18;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 11px;
    color: #706f6c;
    margin-top: -2px;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: #1b1b18;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    font-weight: 500;
}

nav a:hover {
    color: #706f6c;
}

nav a.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.search-bar {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
}

.search-bar input:focus {
    outline: none;
    border-color: #1b1b18;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.5;
    color: #706f6c;
    pointer-events: none;
}

.search-icon svg {
    width: 18px;
    height: 18px;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn {
    width: auto;
    height: auto;
    min-width: 24px;
    min-height: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b1b18;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 4px;
    gap: 4px;
}

.icon-btn:hover {
    opacity: 1;
}

.icon-btn i {
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    color: #1b1b18;
}

.icon-btn i.fa-regular {
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-btn svg {
    width: 100%;
    height: 100%;
}

.icon-btn .dropdown-arrow {
    font-size: 12px;
    opacity: 0.6;
    transition: transform 0.2s;
    color: #706f6c;
    font-weight: 400;
    display: inline-block;
}

.icon-btn-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1b1b18;
}

.icon-btn-search .search-icon-svg {
    flex-shrink: 0;
    color: #1b1b18;
}

.icon-btn-notification {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    background-color: #dc2626;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: block;
}

/* Profile Dropdown */
.profile-dropdown-wrapper {
    position: relative;
}

.profile-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 4px;
}

.profile-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #1b1b18;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-icon-circle i {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.profile-toggle .dropdown-arrow {
    font-size: 12px;
    opacity: 0.6;
    transition: transform 0.2s;
    color: #706f6c;
    font-weight: 900;
    display: inline-block;
    line-height: 1;
    margin-left: 2px;
}

.profile-dropdown-wrapper.active .profile-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.profile-toggle .dropdown-arrow svg {
    display: none;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease-out;
    z-index: 1000;
}

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

.profile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 15px;
    color: #1b1b18;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.profile-dropdown-item:hover {
    background: #f5f5f3;
}

.profile-dropdown-item svg,
.profile-dropdown-item i {
    flex-shrink: 0;
    color: #706f6c;
    width: 18px;
    text-align: center;
}

.profile-dropdown-item i {
    font-size: 16px;
}

.profile-dropdown-logout {
    color: #dc2626;
    margin-top: 4px;
    border-top: 1px solid #e3e3e0;
    padding-top: 12px;
}

.profile-dropdown-logout:hover {
    background: #fee2e2;
}

.profile-dropdown-logout svg,
.profile-dropdown-logout i {
    color: #dc2626;
}

.profile-dropdown-item-with-submenu {
    position: relative;
    cursor: pointer;
}

.profile-dropdown-item-with-submenu > div {
    width: 100%;
}

.history-submenu-arrow {
    font-size: 12px;
    color: #706f6c;
    transition: transform 0.2s;
    margin-left: auto;
}

.history-submenu {
    position: absolute;
    left: calc(100% + 8px);
    top: 0;
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.2s ease-out;
    z-index: 1001;
    white-space: nowrap;
}

.history-submenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.history-submenu-item {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: #1b1b18;
    text-decoration: none;
    transition: background 0.2s;
}

.history-submenu-item:hover {
    background: #f5f5f3;
}

.history-submenu-item span {
    display: block;
}

/* Prevent submenu from closing when clicking inside */
.profile-dropdown-item-with-submenu:hover .history-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.profile-dropdown-item-with-submenu:hover .history-submenu-arrow {
    transform: rotate(90deg);
}

.btn-list-now {
    background: #1b1b18;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-list-now:hover {
    background: #000000;
}

.list-now-dropdown-wrapper {
    position: relative;
}

.btn-list-now.list-now-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.list-now-dropdown-wrapper.active .list-now-toggle .list-now-arrow {
    transform: rotate(180deg);
}

.list-now-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.list-now-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1100;
}

.list-now-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.list-now-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #1b1b18;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.15s ease;
}

.list-now-dropdown-item:hover {
    background: #f5f5f3;
}

.list-now-dropdown-item i {
    font-size: 16px;
    color: #706f6c;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    color: #706f6c;
    margin-bottom: 70px;
    line-height: 1.6;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 32px;
    margin-top: 70px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 20px;
    padding: 48px;
    position: relative;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #d0d0ce;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    /* background: #babab7; */
    border-radius: 0 16px 0 100%;
    background: linear-gradient(135deg, #a3a0a0, #e3e3e3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    background: black;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1b1b18;
    letter-spacing: -0.5px;
    line-height: 1.3;
    text-align: left;
}

.feature-card p {
    font-size: 17px;
    color: #706f6c;
    margin-bottom: 28px;
    line-height: 1.6;
}

.btn-feature {
    background: #1b1b18;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    float:left;
}

.btn-feature:hover {
    background: #000000;
    transform: translateY(-1px);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: #706f6c;
    line-height: 1.5;
}

.view-all-link {
    color: #1b1b18;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    padding-bottom: 4px;
}

.view-all-link:hover {
    color: #706f6c;
    gap: 10px;
}

/* Home Page Specific Styles */
.home-page {
    /* Home page wrapper */
}

/* Grid Layouts */
.home-page .items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (min-width: 1200px) {
    .home-page .items-grid {
        gap: 28px;
    }
}

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

@media (max-width: 768px) {
    .home-page .items-grid {
        grid-template-columns: 1fr;
    }
}

.home-page .item-card {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-page .item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15), 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-color: #d0d0ce;
}

.home-page .item-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #f5f5f3;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.home-page .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
}

.home-page .item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.home-page .item-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
    gap: 8px;
}

.home-page .badge-category {
 background: #ffffff;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: black;
    font-weight: 600;
    color: black;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.home-page .badge-available {
    background: #dafde6;
    color: #008236;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.badge-busy {
    background: #ef4444;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.item-content {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-title {
    font-size: 17px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 10px;
    line-height: 1.4;
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #706f6c;
    flex-wrap: wrap;
    display: block;
}

.home-page .rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
}

.home-page .star {
    color: #fbbf24;
    display: inline-flex;
    align-items: center;
    width: 13px;
    height: 13px;
    margin-right: 3px;
    flex-shrink: 0;
}

.home-page .star svg {
    width: 13px;
    height: 13px;
    fill: #fbbf24;
}

.home-page .item-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #706f6c;
}

.home-page .location-icon {
    width: 13px;
    height: 13px;
    opacity: 0.7;
    flex-shrink: 0;
}

.home-page .item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.home-page .price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #1b1b18;
    line-height: 1.2;
}

.home-page .price-unit {
    font-size: 13px;
    color: #706f6c;
    font-weight: 400;
    margin-top: 2px;
}

.home-page .price-button-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    width: 100%;
}

.home-page .price-button-container .item-price {
    margin: 0;
    flex-shrink: 0;
}

.home-page .btn-view-details,
.home-page .btn-book-now {
    background: #1b1b18;
    color: #ffffff;
    padding: 11px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.2px;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.home-page .btn-view-details:hover,
.home-page .btn-book-now:hover {
    background: #000000;
}

.home-page .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-page .item-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.home-page .service-card .item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.home-page .service-card .item-title {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.home-page .service-provider {
    font-size: 14px;
    color: #1b1b18;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.5;
}

.home-page .service-card .item-meta {
    margin-bottom: 12px;
}

.home-page .service-card .price-button-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
}

.home-page .service-card .item-price {
    margin: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-page .service-card .price-amount {
    font-size: 32px;
    margin-bottom: 2px;
}

.home-page .service-card .price-unit {
    font-size: 14px;
    color: #706f6c;
}

.home-page .service-card .btn-book-now {
    width: auto;
    min-width: 130px;
    padding: 14px 28px;
    flex-shrink: 0;
    border-radius: 8px;
}
.item-card .btn-view-details {
    width: auto;
    min-width: 130px;
    padding: 14px 28px;
    flex-shrink: 0;
    border-radius: 8px;
}
.home-page .jobs-completed {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1b1b18;
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.home-page .jobs-completed svg {
    width: 18px;
    height: 18px;
    background: #38CD5F;
    border-radius: 50%;
    padding: 3px;
}

.home-page .checkmark {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Footer */
footer {
    background: #f5f5f3;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-section {
    max-width: 300px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 12px;
}

.footer-description {
    font-size: 14px;
    color: #706f6c;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 13px;
    border: 1px solid #e4e4e4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.social-icon:hover {
    background: #e3e3e0;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #706f6c;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #1b1b18;
}

.footer-bottom {
    border-top: 1px solid #e3e3e0;
    padding-top: 30px;
    text-align: left;
    font-size: 14px;
    color: #706f6c;
}

/* Responsive */
@media (max-width: 1024px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .search-bar {
        order: 2;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Item Detail Page Styles */
.item-detail-page {
    padding: 40px 0 80px;
    /* background: #f5f5f3; */
    min-height: calc(100vh - 200px);
}

.item-detail-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.item-detail-page .detail-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

.item-detail-page .detail-left {
    background: #ffffff;
    border-radius: 12px;
    padding: 0px;
    box-shadow: none;
}

.item-detail-page .detail-right {
    position: sticky;
    top: 100px;
}

.item-detail-page .rental-panel {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

/* Item detail: image gallery always visible */
.item-detail-page .image-gallery {
    display: block;
    margin-bottom: 40px;
    width: 100%;
}

.item-detail-page .main-image {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f5f5f3;
}

.item-detail-page .main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-detail-page .image-thumbnails {
    display: flex;
    gap: 12px;
}

.item-detail-page .thumbnail {
   width: 185px;
    height: 151px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.item-detail-page .thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-detail-page .category-badge {
    display: inline-block;
    margin-bottom: 16px;
}

.item-detail-page .detail-title {
    margin-bottom: 32px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #706f6c;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #1b1b18;
}

.back-link svg {
    width: 16px;
    height: 16px;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

.detail-left {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.category-badge {
    display: inline-block;
    background: rgba(27, 27, 24, 0.9);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 32px;
    line-height: 1.2;
}

.image-gallery {
    margin-bottom: 40px;
}

.main-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f5f5f3;
}

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

.image-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(27, 27, 24, 0.8);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.image-thumbnails {
    display: flex;
    gap: 12px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.thumbnail:hover {
    border-color: #1b1b18;
}

.thumbnail.active {
    border-color: #1b1b18;
}

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

.detail-section {
    margin-bottom: 40px;
}
.detail-section-items {
    margin-bottom: 40px;
    padding: 30px;
    border: 1px solid #dedede;
    border-radius: 25px;
}
.detail-section-rules {
    margin-bottom: 40px;
    padding: 30px;
    border: 1px solid #dedede;
    border-radius: 25px;
    background: #EFF6FF;
}
.section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 16px;
}

.section-heading svg {
    width: 20px;
    height: 20px;
    /* color: #706f6c; */
    color: #155DFC;
}

.description-text {
    font-size: 16px;
    color: #706f6c;
    line-height: 1.7;
}

.item-details-list p {
    font-size: 15px;
    color: #1b1b18;
    margin-bottom: 20px;
}

.included-items {
    margin-top: 20px;
}

.included-items h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 12px;
}

.included-items ul {
    list-style: none;
}

.included-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #706f6c;
    margin-bottom: 10px;
}

.included-items svg {
    flex-shrink: 0;
}

.rental-rules {
    list-style: none;
}

.rental-rules li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    color: #706f6c;
    margin-bottom: 12px;
    line-height: 1.6;
}

.rental-rules li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #155DFC;
}

.reviews-header {
    margin-bottom: 24px;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-score {
    font-size: 32px;
    font-weight: 700;
    color: #1b1b18;
}

.rating-count {
    font-size: 15px;
    color: #706f6c;
}

.reviews-list {
    margin-bottom: 20px;
}

.review-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e3e3e0;
}

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

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

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

.reviewer-name {
    font-weight: 600;
    color: #1b1b18;
    font-size: 15px;
}

.review-date {
    font-size: 14px;
    color: #706f6c;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.review-text {
    font-size: 15px;
    color: #706f6c;
    line-height: 1.6;
}

.show-all-reviews {
    width: 100%;
    padding: 12px;
    background: #f5f5f3;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1b1b18;
    cursor: pointer;
    transition: all 0.2s;
}

.show-all-reviews:hover {
    background: #e3e3e0;
}

.detail-right {
    position: sticky;
    top: 100px;
}

.rental-panel {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.rental-price {
    margin-bottom: 24px;
}

.price-main {
    font-size: 36px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 8px;
}

.price-period {
    font-size: 18px;
    font-weight: 400;
    color: #706f6c;
}

.deposit-info {
    font-size: 14px;
    color: #706f6c;
    display: inline-flex;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 20px;
    border: 1px solid #00b64b4d;
    padding: 5px 12px 5px 12px;
    color: #008236;
    background: #ECFDF5;
    width: 142px;
    border-radius: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38CD5F;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #706f6c;
    margin-bottom: 24px;
}

.location-info svg {
    width: 16px;
    height: 16px;
}

.rental-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.date-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 8px;
}

.date-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 15px;
    color: #1b1b18;
    background: #ffffff;
}

.delivery-options {
    margin-bottom: 24px;
}

.delivery-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.delivery-option {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 8px;
    padding: 24px 13px;
    border: 2px solid #e3e3e0;
    border-radius: 8px;
    background: #ffffff;
    font-size: 14px;
    font-weight: 600;
    color: #706f6c;
    cursor: pointer;
    transition: all 0.2s;
}

.delivery-option:hover {
    border-color: #1b1b18;
}

.delivery-option.active {
    border-color: #1b1b18;
    /* background: #1b1b18; */
    color: black;
}

.delivery-option svg {
    width: 20px;
    height: 20px;
}

.delivery-details {
    margin-bottom: 24px;
}

.delivery-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 12px;
}

.delivery-heading svg {
    width: 18px;
    height: 18px;
}

.delivery-address-box {
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    margin-bottom: 20px;
}
.delivery-address-box svg {
    width: 56px;
    height: 56px;
    background: #dbeafe;
    padding: 14px;
    border-radius: 50%;
    margin-bottom: 14px;
}

.address-label {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.address-hint {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 19px;
}

/* Button */
.btn-add-address {
    width: 100%;
    background: linear-gradient(135deg, #000000, #1f2937);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-address:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.delivery-notes {
    margin-bottom: 24px;
}

.delivery-notes label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 8px;
}

.delivery-notes textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #1b1b18;
    resize: vertical;
    background: #F9FAFC;
}

.btn-request-rent {
    width: 100%;
    padding: 16px;
    background: #1b1b18;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 32px;
}

.btn-request-rent:hover {
    background: #000000;
}

.owner-section {
    padding-top: 32px;
    border-top: 1px solid #e3e3e0;
}

.owner-heading {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 16px;
}

.owner-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

.owner-name {
    font-size: 16px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 4px;
}

.owner-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #706f6c;
}

.owner-rating svg {
    width: 14px;
    height: 14px;
}

.owner-verifications {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.verification-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #706f6c;
}

.verification-item svg {
    flex-shrink: 0;
}

.btn-view-details,
.btn-book-now {
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .detail-content,
    .item-detail-page .detail-content {
        grid-template-columns: 1fr;
    }

    .detail-right,
    .item-detail-page .detail-right {
        position: static;
    }
}

/* Rental Request Page Styles */
.rental-request-page {
    padding: 40px 0 80px;
    background: #f5f5f3;
    min-height: calc(100vh - 200px);
}

.rental-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e3e3e0;
}

.rental-header-left {
    flex: 1;
}

.rental-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 8px;
}

.rental-subtitle {
    font-size: 16px;
    color: #706f6c;
}

.close-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #706f6c;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.close-button:hover {
    background: #f5f5f3;
    color: #1b1b18;
}

.close-button svg {
    width: 24px;
    height: 24px;
}

/* Progress Stepper */
.progress-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    background: #f5f5f3;
    color: #706f6c;
    border: 2px solid #e3e3e0;
    transition: all 0.2s;
}

.step.active .step-number {
    background: #1b1b18;
    color: #ffffff;
    border-color: #1b1b18;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: #706f6c;
    white-space: nowrap;
}

.step.active .step-label {
    color: #1b1b18;
    font-weight: 600;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: #e3e3e0;
    margin: 0 20px;
    max-width: 120px;
}

/* Rental Sections */
.rental-section {
    margin-bottom: 32px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 8px;
}

.section-description {
    font-size: 15px;
    color: #706f6c;
    margin-bottom: 24px;
}

/* Item Info Card */
.item-info-card {
    display: flex;
    gap: 24px;
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

.item-image-section {
    flex-shrink: 0;
}

.item-image {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

.item-details-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-name {
    font-size: 22px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 16px;
}

.item-meta-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #706f6c;
}

.meta-item svg {
    width: 18px;
    height: 18px;
    color: #706f6c;
}

/* Pricing Card */
.pricing-card {
    background: #eeeeee;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #d6d6d6;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #706f6c;
}

.pricing-label svg {
    width: 20px;
    height: 20px;
    color: #706f6c;
}

.pricing-value {
    font-size: 20px;
    font-weight: 700;
    color: #1b1b18;
}

/* Important Information Box */
.important-info-box {
    background: #e6f2ff;
    border: 1px solid #b3d9ff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #1C398E;
    margin-bottom: 16px;
}

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

.info-list li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    color: #193CB8;
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 24px;
    color: #193CB8;
    line-height: 1;
}

/* Rental Actions */
.rental-actions {
     display: flex;
    gap: 16px;
    justify-content: flex-end;
    /* padding-top: 32px; */
    /* border-top: 1px solid #e3e3e0; */
    margin-top: 40px;
}

.btn-cancel {
    padding: 14px 28px;
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #706f6c;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background: #f5f5f3;
    border-color: #d0d0ce;
}

.btn-continue {
    padding: 14px 32px;
    background: #1b1b18;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.btn-continue:hover {
    background: #000000;
    color: #ffffff;
}

.btn-request-rent {
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 768px) {
    .rental-title {
        font-size: 24px;
    }

    .item-info-card {
        flex-direction: column;
    }

    .item-image {
        width: 100%;
        height: auto;
        max-height: 300px;
    }

    .progress-stepper {
        flex-wrap: wrap;
        gap: 12px;
    }

    .step-connector {
        display: none;
    }

    .rental-actions {
        flex-direction: column;
    }

    .btn-cancel,
    .btn-continue {
        width: 100%;
    }
}

/* Dates & Delivery Page Styles */
.dates-delivery-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    margin-bottom: 40px;
}

.dates-delivery-left {
    display: flex;
    flex-direction: column;
}

.step.completed .step-number {
    background: #1b1b18;
    color: #ffffff;
    border-color: #1b1b18;
}

.step.completed .step-label {
    color: #1b1b18;
    font-weight: 600;
}

.step-connector.completed {
    background: #1b1b18;
}

.method-card {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.method-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.method-card-header svg {
    width: 24px;
    height: 24px;
    color: #8b5cf6;
}

.method-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
}

.date-inputs-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.date-input-wrapper {
    display: flex;
    flex-direction: column;
}

.date-input-wrapper label {
    font-size: 14px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 8px;
}

.date-input-field {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 15px;
    color: #1b1b18;
    background: #ffffff;
    font-family: inherit;
    transition: all 0.2s;
}

.date-input-field:focus {
    outline: none;
    border-color: #1b1b18;
    box-shadow: 0 0 0 3px rgba(27, 27, 24, 0.1);
}

.rental-period-indicator {
    padding: 10px 14px;
    background: #d1fae5;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #065f46;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.delivery-options-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.delivery-option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    width: 100%;
}

.delivery-option-btn:hover {
    border-color: #1b1b18;
}

.delivery-option-btn.active {
    border-color: #1b1b18;
    background: #ffffff;
    color: #1b1b18;
}

.delivery-option-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

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

.option-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: inherit;
}

.option-price {
    font-size: 13px;
    opacity: 0.7;
    color: inherit;
}

.delivery-option-btn.active .option-name,
.delivery-option-btn.active .option-price {
    color: #1b1b18;
}

.pickup-location {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f0f0f0;
    border-radius: 8px;
    margin-top: 16px;
    border: 1px solid #dfdddd;
}

.pickup-location svg {
    width: 18px;
    height: 18px;
    color: #8b5cf6;
    flex-shrink: 0;
}

.location-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-label {
    font-size: 14px;
    font-weight: 600;
    color: #1b1b18;
}

.location-value {
    font-size: 14px;
    color: #706f6c;
}

.dates-delivery-right {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.rental-summary-card {
    background: #f9f9f8;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.summary-title {
    font-size: 20px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e3e3e0;
}

.summary-row.subtotal {
    border-top: 2px solid #e3e3e0;
    border-bottom: 2px solid #e3e3e0;
    margin-top: 8px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.summary-row.total-due {
    border-bottom: none;
    margin-top: 8px;
    padding-top: 16px;
}

.summary-label {
    font-size: 15px;
    color: #706f6c;
}

.summary-value {
    font-size: 15px;
    font-weight: 600;
    color: #1b1b18;
}

.summary-row.total-due .summary-label {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
}

.summary-row.total-due .summary-value {
    font-size: 20px;
    font-weight: 700;
    color: #1b1b18;
}

.summary-note {
    font-size: 13px;
    color: #706f6c;
    margin-top: 12px;
    text-align: center;
}

.btn-back {
    padding: 14px 28px;
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #706f6c;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back:hover {
    background: #f5f5f3;
    border-color: #d0d0ce;
}

.btn-continue {
    text-decoration: none;
    display: inline-block;
}

.btn-continue:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-continue:disabled:hover {
    background: #1b1b18;
}

@media (max-width: 1024px) {
    .dates-delivery-content {
        grid-template-columns: 1fr;
    }

    .dates-delivery-right {
        position: static;
    }

    .date-inputs-group {
        grid-template-columns: 1fr;
    }

    .delivery-options-group {
        grid-template-columns: 1fr;
    }
}

/* Rental Confirmation Page Styles */
.confirmation-content {
    max-width: 800px;
    margin: 0 auto;
    /* padding-bottom: 60px; */
}

.confirmation-header {
    text-align: center;
    margin-bottom: 48px;
    padding-top: 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 56px;
    height: 56px;
    stroke: #38CD5F;
    stroke-width: 3;
}

.confirmation-title {
    font-size: 36px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.confirmation-message {
    font-size: 16px;
    color: #706f6c;
    line-height: 1.6;
}

.request-details-card {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.details-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 20px;
}

.details-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.details-image {
    flex-shrink: 0;
}

.details-image img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}

.details-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.details-item-name {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 4px;
    line-height: 1.4;
}

.details-item-owner {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #706f6c;
    margin-bottom: 16px;
}

.owner-label {
    color: #706f6c;
}

.owner-name {
    color: #1b1b18;
    font-weight: 500;
}

.details-separator {
    width: 100%;
    height: 1px;
    background: #e3e3e0;
}

.details-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.details-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.details-row svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #706f6c;
    margin-top: 2px;
}

.details-row-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.details-label {
    font-size: 13px;
    color: #706f6c;
    font-weight: 600;
}

.details-value {
    font-size: 15px;
    color: #1b1b18;
    font-weight: 400;
}

.what-happens-next {
    background: #e6f2ff;
    border: 1px solid #b3d9ff;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 28px;
}

.happens-title {
    font-size: 20px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 20px;
}

.happens-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0;
}

.happens-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #1b1b18;
    line-height: 1.7;
}

.happens-list li:last-child {
    margin-bottom: 0;
}

.happens-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.happens-list li strong {
    color: #1b1b18;
    font-weight: 700;
}

.notification-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #d1fae5;
    border-radius: 10px;
    margin-bottom: 40px;
}

.notification-banner svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #38CD5F;
    stroke-width: 2.5;
}

.notification-banner span {
    font-size: 15px;
    color: #065f46;
    font-weight: 500;
    line-height: 1.5;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.btn-back-listing {
    padding: 16px 40px;
    background: #1b1b18;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    letter-spacing: 0.2px;
    width: 100%;
}

.btn-back-listing:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .confirmation-title {
        font-size: 24px;
    }

    .details-content {
        flex-direction: column;
    }

    .details-image {
        align-self: center;
    }

    .details-image img {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
}

/* Services Page Styles - Scoped to avoid conflicts */
.services-page {
    /* Services page wrapper */
}

.services-hero {
    background: linear-gradient(135deg, #f5f5f3 0%, #ffffff 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.services-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.services-hero p {
    font-size: 18px;
    color: #706f6c;
    max-width: 600px;
    margin: 0 auto;
}

.services-section {
    padding: 80px 0;
}

.services-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.services-section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.services-section-subtitle {
    font-size: 16px;
    color: #706f6c;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (min-width: 1200px) {
    .services-grid {
        gap: 28px;
    }
}

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

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

.service-card-item {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15), 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-color: #d0d0ce;
}

.service-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #f5f5f3;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
}

.service-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
    gap: 8px;
}

.service-badge-category {
    background: rgba(27, 27, 24, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.service-badge-available {
    background: #38CD5F;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.service-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.service-card-title {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #1b1b18;
}

.service-card-provider {
    font-size: 14px;
    color: #1b1b18;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.5;
}

.service-card-meta {
    margin-bottom: 12px;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    font-size: 13px;
    color: #706f6c;
}

.service-star {
    color: #fbbf24;
    display: inline-flex;
    align-items: center;
    width: 13px;
    height: 13px;
    margin-right: 3px;
    flex-shrink: 0;
}

.service-star svg {
    width: 13px;
    height: 13px;
    fill: #fbbf24;
}

.service-jobs-completed {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1b1b18;
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.service-checkmark {
    width: 18px;
    height: 18px;
    background: #38CD5F;
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
}

.service-checkmark svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.service-price-button-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
}

.service-card-price {
    margin: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-price-amount {
    font-size: 32px;
    margin-bottom: 2px;
    font-weight: 700;
    color: #1b1b18;
    line-height: 1.2;
}

.service-price-unit {
    font-size: 14px;
    color: #706f6c;
    font-weight: 400;
}

.service-btn-book-now {
    width: auto;
    min-width: 130px;
    padding: 14px 28px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #1b1b18;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.service-btn-book-now:hover {
    background: #000000;
    color: #ffffff;
}

/* Service Detail Page Styles - Scoped to avoid conflicts */
.service-detail-page {
    padding: 40px 0 80px;
}

.service-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1b1b18;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 32px;
    transition: color 0.2s;
}

.service-back-link:hover {
    color: #706f6c;
}

.service-back-link svg {
    width: 16px;
    height: 16px;
}

.service-profile-card-full {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

@media (max-width: 1024px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }
}

/* Left Column - Service Information */
.service-detail-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-image-gallery {
    margin-bottom: 40px;
    width: 100%;
}

.service-main-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.service-gallery-image {
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f3;
    aspect-ratio: 4/3;
    height: auto;
}

.service-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-requirements-section {
    background: #e6f3ff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.service-requirements-section .service-section-heading {
    color: #1b1b18;
    margin-bottom: 20px;
}

.service-requirements-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-sub-heading {
font-size: 18px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: -2px;
    border-top: 1px solid #c9c9c9;
    /* margin-top: 6px; */
    padding-top: 27px;
}

.service-requirements-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.service-requirements-list li {
    font-size: 16px;
    color: #1b1b18;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.service-requirements-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #155DFC;
    font-weight: bold;
    font-size: 18px;
}

.service-gallery-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-category {
    display: inline-block;
    background: #eeeeee;
    color: black;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.service-detail-title {
    font-size: 40px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.service-detail-section {
    margin-bottom: 32px;
}

.service-section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 16px;
}

.service-section-heading svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.service-description-text {
    font-size: 16px;
    color: #1b1b18;
    line-height: 1.6;
}

.service-included-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #1b1b18;
    line-height: 1.5;
}

.service-included-list svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}


.service-provider-card {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 24px;
}

.service-provider-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.service-provider-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.service-provider-info {
    flex: 1;
}

.service-provider-name {
    font-size: 20px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 4px;
}

.service-provider-company {
    font-size: 15px;
    color: #706f6c;
    margin-bottom: 8px;
}

.service-provider-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #1b1b18;
}

.service-provider-rating svg {
    width: 16px;
    height: 16px;
}

.service-provider-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 16px;
    padding: 20px 0;
    /* border-top: 1px solid #e3e3e0; */
    /* border-bottom: 1px solid #e3e3e0; */
}

.service-metric-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.service-metric-item svg {
    width: 20px;
    height: 20px;
    color: #706f6c;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-metric-value {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 2px;
}

.service-metric-label {
    font-size: 13px;
    color: #706f6c;
}

.service-member-since {
    font-size: 14px;
    color: #706f6c;
    margin-bottom: 20px;
}

.service-verifications-section {
    margin-bottom: 24px;
}

.service-verifications-title {
    font-size: 16px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 12px;
}

.service-verifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-verification-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1b1b18;
}

.service-verification-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.service-btn-contact {
    width: 100%;
    padding: 14px 28px;
    border-radius: 8px;
    /* background: #1b1b18; */
    background: none;
    /* color: #ffffff; */
    color: black;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid;
        display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 9px;

}

.service-btn-contact:hover {
    background: #000000;
    color:white;
}

.service-reviews-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 24px;
}

.service-reviews-heading svg {
    width: 24px;
    height: 24px;
}

.service-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.service-review-item {
    display: flex;
    gap: 16px;
}

.service-reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.service-review-content {
    flex: 1;
}

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

.service-reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #1b1b18;
}

.service-review-date {
    font-size: 14px;
    color: #706f6c;
}

.service-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.service-review-stars svg {
    width: 16px;
    height: 16px;
}

.service-review-text {
    font-size: 15px;
    color: #1b1b18;
    line-height: 1.6;
}

.service-show-all-reviews {
    width: 100%;
    padding: 14px 28px;
    border-radius: 8px;
    background: transparent;
    color: #1b1b18;
    border: 1px solid #e3e3e0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.service-show-all-reviews:hover {
    border-color: #1b1b18;
    background: #f5f5f3;
}

/* Right Column - Booking Panel */
.service-detail-right {
    position: sticky;
    top: 100px;
}

.service-booking-panel {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
}

.service-booking-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e3e3e0;
}

.service-price-main {
    font-size: 36px;
    font-weight: 700;
    color: #1b1b18;
    line-height: 1.2;
}

.service-price-period {
    font-size: 18px;
    font-weight: 400;
    color: #706f6c;
}

.service-availability-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #1b1b18;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38CD5F;
    flex-shrink: 0;
}

.service-location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #706f6c;
    margin-bottom: 24px;
}

.service-location-info svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.service-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.service-form-label {
    font-size: 15px;
    font-weight: 500;
    color: #1b1b18;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-form-label svg {
    flex-shrink: 0;
}

.service-required {
    color: #ef4444;
}

.service-optional {
    font-size: 13px;
    font-weight: 400;
    color: #706f6c;
}

.service-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 15px;
    color: #1b1b18;
    background: #ffffff;
    transition: border-color 0.2s;
}

.service-form-input:focus {
    outline: none;
    border-color: #1b1b18;
}

.service-time-options {
    display: flex;
    gap: 12px;
}

.service-time-option {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    background: #ffffff;
    color: #1b1b18;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.service-time-option:hover {
    border-color: #1b1b18;
}

.service-time-option.active {
    /* background: #1b1b18; */
    color: black;
    border-color: #1b1b18;
    font-weight: 600;
}

.service-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 15px;
    color: #1b1b18;
    background: #f7f7f7ee;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.2s;
}
.service-location-label {
    background: #FEE2E2;
    padding: 8px 7px 9px 12px;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    /* font-size: 16px; */
}
.service-attachment-label{
    background: #EDE9FE;
    padding: 6px;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 48px;
    width: 43px;
}
.service-form-textarea:focus {
    outline: none;
    border-color: #1b1b18;
}

.service-form-hint {
    font-size: 13px;
    color: #706f6c;
    margin-top: -4px;
}

.service-location-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.service-location-input-icon {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: #706f6c;
    pointer-events: none;
    z-index: 1;
}

.service-location-input {
    padding-left: 44px;
}

.service-input-error {
    border-color: #ef4444 !important;
}

.service-input-error:focus {
    border-color: #ef4444 !important;
}

.service-form-error {
    font-size: 13px;
    color: #ef4444;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-form-error svg {
    flex-shrink: 0;
}

.service-form-privacy {
    font-size: 13px;
    color: #1b1b18;
    margin-top: 8px;
    padding: 12px 16px;
    background: #e6f3ff;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.service-form-privacy::before {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231b1b18'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.service-upload-box {
    border: 2px dashed #e3e3e0;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafafa;
}

.service-upload-box:hover {
    border-color: #1b1b18;
    background: #f5f5f3;
}

.service-upload-icon {
    width: 24px;
    height: 24px;
    color: #706f6c;
    margin: 0 auto 12px;
    display: block;
}

.service-upload-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-upload-label {
    font-size: 15px;
    font-weight: 500;
    color: #1b1b18;
}

.service-upload-hint {
    font-size: 13px;
    color: #706f6c;
}

.service-btn-request {
    width: 100%;
    padding: 16px 28px;
    border-radius: 8px;
    background: #1b1b18;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.service-btn-request:hover {
    background: #000000;
}

@media (max-width: 1024px) {
    .service-detail-right {
        position: static;
    }
    
    .service-main-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .service-gallery-image {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 768px) {
    .service-main-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* New Service Detail Card Styles */
.service-info-card {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
}

.service-provider-profile {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-provider-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.service-provider-details {
    flex: 1;
}

.service-provider-name-large {
    font-size: 24px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 4px;
}

.service-provider-title {
    font-size: 16px;
    color: #706f6c;
    margin-bottom: 12px;
}

.service-provider-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.service-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #706f6c;
}

.service-meta-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.service-stars {
    display: flex;
    gap: 2px;
}

.service-rating-text {
    font-size: 15px;
    color: #1b1b18;
    font-weight: 500;
}

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

.service-card-header svg:not(.service-icon-circle svg) {
    color: #706f6c;
    stroke: #706f6c;
}

.service-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-green {
    background: #38CD5F;
}

.service-icon-green svg {
    width: 16px;
    height: 16px;
}

.service-icon-purple {
    background: #a78bfa;
}

.service-icon-purple svg {
    width: 16px;
    height: 16px;
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
}

.service-card-description {
    font-size: 15px;
    color: #1b1b18;
    line-height: 1.6;
}

.service-pricing-content {
    margin-bottom: 16px;
}

.service-pricing-label {
    font-size: 14px;
    color: #706f6c;
    margin-bottom: 4px;
}

.service-pricing-amount {
    font-size: 32px;
    font-weight: 700;
    color: #1b1b18;
}

.service-pricing-unit {
    font-size: 18px;
    font-weight: 400;
    color: #706f6c;
}

.service-minimum-charge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fef3c7;
    border-radius: 8px;
    font-size: 14px;
    color: #D97706;
    margin-top: 16px;
}

.service-minimum-amount {
    font-weight: 700;
    /* color: #1b1b18; */
}

.service-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-skill-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f3;
    border: 1px solid #e3e3e0;
    border-radius: 20px;
    font-size: 14px;
    color: #1b1b18;
    font-weight: 500;
}

.service-credentials-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.service-credential-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
}

.service-credential-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.service-credential-icon-wrapper {
    width: 40px;
    height: 40px;
    background: #e0e7ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-credential-icon-wrapper svg {
    width: 18px;
    height: 18px;
}

.service-credential-icon {
    width: 18px;
    height: 18px;
    color: #706f6c;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-credential-name {
    font-size: 15px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 2px;
}

.service-credential-details {
    font-size: 13px;
    color: #706f6c;
}

.service-download-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #3b82f6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.service-download-btn:hover {
    background: #2563eb;
}

.service-download-btn svg {
    width: 16px;
    height: 16px;
}

.service-download-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

.service-verification-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f0fdf4;
    border-radius: 8px;
    font-size: 14px;
    color: #38CD5F;
    font-weight: 500;
    margin-top: 16px;
}

.service-verification-status svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.service-availability-days {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-day-btn {
    padding: 10px 16px;
    background: #60a5fa;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.service-day-btn:hover {
    background: #3b82f6;
}

.service-day-selected {
    background: #2563eb;
}

.service-day-selected:hover {
    background: #1d4ed8;
}

.service-time-slots {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-time-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid #e3e3e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    color: #1b1b18;
    background: #ffffff;
}

.service-time-slot:hover {
    border-color: #3b82f6;
}

.service-time-slot.active {
    border-color: #3b82f6;
    background: #dbeafe;
    color: #3b82f6;
}

.service-time-slot.active svg {
    color: #3b82f6;
}

.service-time-slot svg {
    color: #706f6c;
}

.service-time-slot input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

.service-time-slot svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Request Service Card */
.service-request-card {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
}

.service-request-title {
    font-size: 24px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 20px;
}

.service-request-pricing {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e3e3e0;
}

.service-request-rate {
    font-size: 32px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 12px;
}

.service-request-unit {
    font-size: 18px;
    font-weight: 400;
    color: #706f6c;
}

.service-request-minimum {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fef3c7;
    border-radius: 8px;
    font-size: 14px;
    color: #1b1b18;
}

.service-request-min-amount {
    font-weight: 700;
    color: #1b1b18;
}

.service-request-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-request-time-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-request-time-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid #e3e3e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    color: #1b1b18;
}

.service-request-time-option:hover {
    border-color: #3b82f6;
}

.service-request-time-option.active {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #3b82f6;
}

.service-request-time-option input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

.service-btn-send-request {
    display: block;
    width: 100%;
    padding: 16px 28px;
    border-radius: 8px;
    background: #1b1b18;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
    text-align: center;
    text-decoration: none;
}

.service-btn-send-request:hover {
    background: #000000;
    color: #ffffff;
}

.service-request-disclaimer {
    font-size: 13px;
    color: #706f6c;
    text-align: center;
    margin-top: 8px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .service-request-card {
        position: static;
    }
}

/* Service Request Modal Styles */
.service-request-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.service-request-modal.active {
    display: flex;
}

.service-request-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    animation: fadeIn 0.3s ease-out;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: auto;
}

.service-request-modal-container {
    position: relative;
    z-index: 100000;
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    max-height: 90vh;
    margin: auto;
    padding: 24px 24px 32px 24px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideInCenter 0.3s ease-out;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.service-request-modal-container::-webkit-scrollbar {
    width: 8px;
}

.service-request-modal-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.service-request-modal-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.service-request-modal-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@keyframes slideInCenter {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Page entrance animation for all web pages */
.web-main-content {
    animation: fadeIn 0.4s ease-out;
}

/* ========== Global web card hover & transition ========== */
.service-stat-card,
.history-section-card,
.premium-banner,
.service-premium-banner,
.premium-card,
.ps-card,
.ps2-card,
.po2-card,
.po3-card,
.po4-card,
.ps4-card,
.av-card,
.svc-loc-card,
.conversation-item,
.review-service-detail-card,
.service-step-progress-card,
.post-service-form-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.service-stat-card:hover,
.history-section-card:hover,
.premium-banner:hover,
.premium-card:hover,
.ps-card:hover,
.ps2-card:hover,
.po2-card:hover,
.po3-card:hover,
.po4-card:hover,
.ps4-card:hover,
.av-card:hover,
.svc-loc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.conversation-item:hover {
    transform: translateX(4px);
}

/* Item cards (home) – enhance existing hover */
.home-page .item-card,
.home-page .item-card.service-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.home-page .item-card:hover,
.home-page .item-card.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Feature cards (home hero) – enhance */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* ========== Global web button hover & active ========== */
.btn-add-service,
.btn-manage-subscription-banner,
.btn-view-details,
.btn-book-now,
.btn-continue,
.btn-back,
.btn-save-draft,
.btn-publish,
.btn-request-rent,
.request-action-btn,
.request-view-btn,
.btn-feature,
.btn-edit-profile,
.btn-manage-subscription,
.btn-add-funds,
.chat-send-btn,
.chat-input-icon,
.chat-more-btn,
.po-draft,
.po-continue,
.ps-draft,
.ps-continue,
.po2-btn,
.po2-back-btn,
.po2-draft,
.po2-continue,
.po3-back-btn,
.po3-draft,
.po3-continue,
.po4-back-btn,
.po4-draft,
.po4-publish,
.ps2-btn,
.ps4-back-btn,
.ps4-publish,
.view-all-link,
.po1-back,
.po2-back,
.po3-back,
.po4-back,
.ps1-back,
.back-link {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-add-service:hover,
.btn-manage-subscription-banner:hover,
.btn-view-details:hover,
.btn-book-now:hover,
.btn-continue:hover,
.btn-back:hover,
.btn-request-rent:hover,
.request-action-btn:hover,
.request-view-btn:hover,
.btn-feature:hover,
.btn-edit-profile:hover,
.btn-manage-subscription:hover,
.btn-add-funds:hover,
.chat-send-btn:hover,
.chat-input-icon:hover,
.po-continue:hover,
.ps-continue:hover,
.po2-continue:hover,
.po3-continue:hover,
.po4-publish:hover,
.ps2-btn.ps2-primary:hover,
.ps4-publish:hover,
.view-all-link:hover {
    transform: translateY(-2px);
}

.view-all-link:hover,
.po1-back:hover,
.po2-back:hover,
.po3-back:hover,
.po4-back:hover,
.ps1-back:hover,
.back-link:hover {
    opacity: 0.85;
}

.btn-add-service:active,
.btn-view-details:active,
.btn-book-now:active,
.btn-continue:active,
.btn-feature:active,
.request-action-btn:active,
.po-continue:active,
.ps-continue:active,
.po2-continue:active,
.po3-continue:active,
.chat-send-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Service Request Page Styles */
.service-request-page {
    padding: 40px 0 60px;
    background: #f5f5f3;
    min-height: calc(100vh - 200px);
    overflow-x: hidden;
}

.service-request-page .container {
    max-width: 900px;
    overflow: visible;
}

.service-request-content {
    overflow: visible;
    position: relative;
}

.service-request-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.service-request-title {
    font-size: 28px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 4px;
    line-height: 1.2;
}

.service-request-subtitle {
    font-size: 15px;
    color: #706f6c;
    font-weight: 400;
    line-height: 1.4;
}

.service-request-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #1b1b18;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    background: transparent;
    padding: 0;
}

.service-request-close:hover {
    background: #f5f5f3;
}

.service-request-close svg {
    width: 24px;
    height: 24px;
}

/* Progress Stepper */
.service-request-stepper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
    width: 100%;
    padding: 0;
    --stepper-progress: 0;
}

/* Background track (full line) */
.service-request-stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: #e3e3e0;
    z-index: 0;
    border-radius: 2px;
}

/* Filled progress (up to active step) */
.service-request-stepper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    width: calc((100% - 120px) * var(--stepper-progress, 0));
    height: 3px;
    background: #1b1b18;
    z-index: 0;
    border-radius: 2px;
    transition: width 0.35s ease;
}

.service-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    background: #ffffff;
    border: 2px solid #e3e3e0;
    color: #706f6c;
    position: relative;
    z-index: 2;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.service-step-circle.service-step-active {
    background: #1b1b18;
    border-color: #1b1b18;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(27, 27, 24, 0.2);
}

.service-step-label {
    font-size: 14px;
    color: #706f6c;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.service-step-label-active {
    color: #1b1b18;
    font-weight: 600;
}

.service-step-circle.service-step-completed {
    background: #38CD5F;
    border-color: #38CD5F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-step-completed .service-step-label {
    color: #1b1b18;
    font-weight: 500;
}

/* Service Modal Steps */
.service-request-modal-container .service-modal-step {
    display: none;
    padding-bottom: 8px;
}

.service-request-modal-container .service-modal-step[data-step="1"]:not([style*="none"]) {
    display: block;
}

/* Step 2: Schedule & Message layout */
.service-schedule-step-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
    margin-bottom: 16px;
}

.service-schedule-form {
    min-width: 0;
}

.service-schedule-field {
    margin-bottom: 24px;
}

.service-schedule-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 8px;
}

.service-schedule-label svg {
    flex-shrink: 0;
    color: #706f6c;
}

.service-schedule-date-hint {
    font-size: 13px;
    color: #706f6c;
    margin-bottom: 6px;
}

.service-schedule-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 15px;
    color: #1b1b18;
    background: #fff;
}

.service-schedule-input:focus {
    outline: none;
    border-color: #1b1b18;
}

.service-time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.service-time-slot {
    padding: 12px;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #706f6c;
    cursor: pointer;
    transition: all 0.2s;
}

.service-time-slot:hover {
    border-color: #1b1b18;
    color: #1b1b18;
}

.service-time-slot.active {
    border-color: #1b1b18;
    background: #1b1b18;
    color: #fff;
}

.service-schedule-optional {
    font-size: 13px;
    color: #706f6c;
    margin-bottom: 8px;
}

.service-schedule-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #1b1b18;
    resize: vertical;
    min-height: 100px;
}

.service-schedule-textarea:focus {
    outline: none;
    border-color: #1b1b18;
}

.service-schedule-char-count {
    font-size: 13px;
    color: #706f6c;
    margin-top: 6px;
}

/* Request Summary (right column) */
.service-request-summary {
    background: #f9f9f8;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 20px;
    position: sticky;
    top: 0;
}

.service-summary-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 16px;
}

.service-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
}

.service-summary-label {
    color: #706f6c;
    flex-shrink: 0;
}

.service-summary-value {
    color: #1b1b18;
    font-weight: 500;
}

.service-summary-divider {
    height: 1px;
    background: #e3e3e0;
    margin: 14px 0;
}

.service-summary-cost .service-summary-value {
    font-size: 18px;
    font-weight: 700;
}

.service-summary-note {
    font-size: 13px;
    color: #706f6c;
    margin-bottom: 14px;
}

.service-summary-info-box {
    background: #e8f4fd;
    color: #1b1b18;
    font-size: 13px;
    line-height: 1.5;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #b8d9f0;
}

/* Step 3: Payment – Request Summary card (white) */
.service-payment-summary-card {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.service-payment-summary-card .service-summary-title {
    margin-top: 0;
}

.service-payment-summary-card .service-summary-cost .service-summary-value {
    font-size: 18px;
    font-weight: 700;
}

/* Step 4: Success */
.service-success-content {
    padding-bottom: 8px;
}

.service-success-header {
    text-align: center;
    margin-bottom: 28px;
}

.service-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-success-icon svg {
    stroke: #38CD5F;
}

.service-success-title {
    font-size: 22px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 8px;
}

.service-success-subtitle {
    font-size: 15px;
    color: #706f6c;
    margin: 0;
}

.service-success-details-card {
    background: #f5f5f3;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.service-success-details-title {
    font-size: 16px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 16px;
}

.service-success-details-top {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-success-details-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-success-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-success-details-info {
    min-width: 0;
}

.service-success-category {
    display: inline-block;
    background: #3b82f6;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-success-service-name {
    font-size: 16px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 4px;
}

.service-success-provider {
    font-size: 14px;
    color: #706f6c;
    margin: 0;
}

.service-success-details-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-success-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1b1b18;
}

.service-success-detail-row svg {
    flex-shrink: 0;
    color: #706f6c;
}

.service-success-what-next {
    background: #e8f4fd;
    border: 1px solid #b8d9f0;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.service-success-what-next-title {
    font-size: 16px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 12px;
}

.service-success-what-next-list {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    color: #1b1b18;
    line-height: 1.7;
}

.service-success-what-next-list li {
    margin-bottom: 8px;
}

.service-success-status-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.service-success-status-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f3;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1b1b18;
}

.service-success-status-box svg {
    flex-shrink: 0;
    color: #706f6c;
}

.service-success-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-success-status-dot-yellow {
    background: #eab308;
}

.service-success-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #38CD5F;
    color: #fff;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.service-success-banner svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .service-success-status-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-schedule-step-layout {
        grid-template-columns: 1fr;
    }
    .service-time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Content Area */
.service-request-content {
    max-width: 100%;
    /* margin: 0 auto; */
    overflow: visible;
    position: relative;
    flex: 1;
    min-height: 0;
}

.service-request-content-title {
    font-size: 20px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 8px;
    margin-top: 0;
}

.service-request-content-subtitle {
    font-size: 14px;
    color: #706f6c;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Service Request Page Cards */
.service-request-page .service-request-card {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    top: auto;
    z-index: 1;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.service-request-page .service-request-card:last-of-type {
    margin-bottom: 0;
}

/* Modal: ensure title and subtitle visible, less space below */
.service-request-modal .service-request-content-title {
    margin-top: 0;
    margin-bottom: 4px;
}

.service-request-modal .service-request-content-subtitle {
    margin-bottom: 12px;
}

/* Modal Cards – reduced spacing between cards */
.service-request-modal .service-request-card {
    background: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.service-request-modal .service-request-card:last-of-type {
    margin-bottom: 0;
}

.service-request-card-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.service-request-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.service-request-card-details {
    flex: 1;
}

.service-request-category {
    display: inline-block;
    padding: 6px 12px;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-request-service-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 8px;
}

.service-request-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #1b1b18;
}

.service-request-location svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.service-request-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 12px;
}

.service-request-provider {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.service-request-provider-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.service-request-provider-info {
    flex: 1;
}

.service-request-provider-name {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 8px;
}

.service-request-provider-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4px;
}

.service-request-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #1b1b18;
    font-weight: 500;
}

.service-request-rating svg {
    width: 16px;
    height: 16px;
}

.service-request-jobs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #1b1b18;
}

.service-request-jobs svg {
    width: 16px;
    height: 16px;
}

.service-request-pricing-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-request-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #e3e3e0;
}

.service-request-pricing-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-request-pricing-total {
    padding-top: 16px;
    border-top: 2px solid #1b1b18;
    margin-top: 8px;
}

.service-request-pricing-label {
    font-size: 15px;
    color: #1b1b18;
}

.service-request-pricing-value {
    font-size: 16px;
    font-weight: 600;
    color: #1b1b18;
}

.service-request-pricing-total .service-request-pricing-label {
    font-weight: 700;
    font-size: 16px;
}

.service-request-pricing-total .service-request-pricing-value {
    font-size: 18px;
}

/* Action Buttons */
.service-request-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 0;
    padding-top: 0;
    border-top: none;
    width: 100%;
    padding-bottom: 0;
}

/* Modal: buttons in one row */
.service-request-modal .service-request-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 0;
    padding-bottom: 4px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.service-request-btn-primary,
.service-request-btn-secondary {
    flex: 1;
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.service-request-btn-primary {
    background: #1b1b18;
    color: #ffffff;
}

.service-request-btn-primary:hover {
    background: #000000;
    color: #ffffff;
}

.service-request-btn-secondary {
    background: #ffffff;
    color: #1b1b18;
    border: 2px solid #e3e3e0;
}

.service-request-btn-secondary:hover {
    background: #f5f5f3;
    border-color: #d1d1ce;
}

@media (max-width: 768px) {
    .service-request-modal {
        padding: 10px;
        overflow: hidden;
    }

    .service-request-modal-container {
        max-width: 100%;
        padding: 24px 20px 32px;
        max-height: 95vh;
        border-radius: 12px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .service-request-title {
        font-size: 24px;
    }

    .service-request-stepper {
        gap: 4px;
    }

    .service-step-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .service-step-label {
        font-size: 12px;
    }

    .service-request-card-content {
        flex-direction: column;
    }

    .service-request-image {
        width: 100%;
        height: 200px;
    }

    .service-request-actions {
        flex-direction: column;
    }

    .service-request-modal .service-request-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

/* Rental Request Modal */
.rental-request-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.rental-request-modal.active {
    display: flex;
}

.rental-request-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    animation: fadeIn 0.3s ease-out;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: auto;
}

.rental-request-modal-container {
    position: relative;
    z-index: 100000;
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    max-height: 90vh;
    margin: auto;
    padding: 24px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideInCenter 0.3s ease-out;
    isolation: isolate;
}

.rental-request-modal-container .rental-header {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.rental-request-modal-container .rental-modal-stepper {
    margin-bottom: 24px;
}

.rental-request-modal-container .rental-modal-step {
    display: none;
    width: 100%;
}

.rental-request-modal-container .rental-modal-step[style*="display: block"] {
    display: block !important;
}

.rental-modal-step .rental-actions {
    margin-top: 24px;
}

.rental-request-modal-container .close-button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

@media (max-width: 768px) {
    .rental-request-modal-container {
        padding: 16px;
        max-height: 95vh;
    }
    .rental-request-modal-container .dates-delivery-content {
        grid-template-columns: 1fr;
    }
}

/* Messages Page Styles */
.messages-page-wrapper {
    min-height: calc(100vh - 160px);
    background: #ffffff;
    overflow: hidden;
}

.messages-page {
    width: 100%;
    height: calc(100vh - 160px);
    min-height: calc(100vh - 160px);
    background: #ffffff;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.messages-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    height: 100%;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

/* Left Sidebar: Conversation List */
.messages-sidebar {
    border-right: 1px solid #e3e3e0;
    background: #f5f5f3;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.messages-header {
    padding: 20px;
    border-bottom: 1px solid #e3e3e0;
    background: #ffffff;
}

.messages-title {
    font-size: 28px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 20px;
    margin-top: 0;
}

.messages-search {
    position: relative;
    display: flex;
    align-items: center;
}

.messages-search svg {
    position: absolute;
    left: 12px;
    color: #706f6c;
    pointer-events: none;
}

.messages-search input {
    width: 100%;
    padding: 10px 12px 10px 38px;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 14px;
    color: #1b1b18;
    background: #ffffff;
}

.messages-search input:focus {
    outline: none;
    border-color: #1b1b18;
}

.conversations-list {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.conversation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #e3e3e0;
    cursor: pointer;
    transition: background 0.2s;
    background: #ffffff;
    position: relative;
}

.conversation-item:hover {
    background: #eeeeec;
}

.conversation-item.active {
    background: #e8e8e6;
}

.conversation-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #1b1b18;
}

.conversation-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.conversation-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.conversation-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: nowrap;
}

.conversation-name {
    font-size: 15px;
    font-weight: 600;
    color: #1b1b18;
    flex: 1;
    min-width: 0;
}

.conversation-time {
    font-size: 12px;
    color: #706f6c;
    flex-shrink: 0;
}

.conversation-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
}

.conversation-item-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #706f6c;
}

.conversation-item-info svg {
    flex-shrink: 0;
    color: #706f6c;
}

.conversation-item-name {
    font-size: 13px;
    color: #706f6c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-preview {
    font-size: 14px;
    color: #706f6c;
    margin: 0 0 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.conversation-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-accepted {
    background: #d1fae5;
    color: #065f46;
}

.status-in-progress {
    background: #e9d5ff;
    color: #6b21a8;
}

.status-completed {
    background: #e5e7eb;
    color: #374151;
}

.status-requested {
    background: #dbeafe;
    color: #1e40af;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Right Column: Chat Area */
.messages-chat {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    overflow: hidden;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e3e3e0;
    background: #ffffff;
    flex-shrink: 0;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.chat-item-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f3;
}

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

.chat-header-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-type {
    display: block;
    font-size: 12px;
    color: #706f6c;
    margin: 0;
}

.chat-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0;
}

.chat-with {
    font-size: 13px;
    color: #706f6c;
    margin: 0;
}

.chat-status-tag {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
}

.chat-more-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #706f6c;
    transition: background 0.2s;
}

.chat-more-btn:hover {
    background: #f5f5f3;
}

/* Chat Messages Area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.system-message {
    text-align: center;
    font-size: 12px;
    color: #706f6c;
    padding: 8px 0;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 70%;
    width: fit-content;
    gap: 4px;
}

.message-received {
    align-self: flex-start;
    align-items: flex-start;
}

.message-sent {
    align-self: flex-end;
    align-items: flex-end;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.5;
    word-wrap: break-word;
    max-width: 100%;
}

.message-received .message-bubble {
    background: #f5f5f3;
    border: 1px solid #e3e3e0;
    color: #1b1b18;
}

.message-sent .message-bubble {
    background: #1b1b18;
    color: #ffffff;
}

.message-time {
    font-size: 12px;
    color: #706f6c;
    padding: 0 4px;
    line-height: 1.2;
}

/* Chat Input Area */
.chat-input-area {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #e3e3e0;
    background: #ffffff;
    flex-shrink: 0;
    min-height: 72px;
}

.chat-input-icon {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #706f6c;
    transition: background 0.2s;
    flex-shrink: 0;
}

.chat-input-icon:hover {
    background: #f5f5f3;
}

.chat-input {
    flex: 1;
    height: 40px;
    padding: 0 16px;
    border: 1px solid #e3e3e0;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.2;
    color: #1b1b18;
    background: #f5f5f3;
    box-sizing: border-box;
}

.chat-input:focus {
    outline: none;
    border-color: #1b1b18;
    background: #ffffff;
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border: none;
    background: #1b1b18;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background 0.2s;
    flex-shrink: 0;
}

.chat-send-btn svg {
    display: block;
    width: 20px;
    height: 20px;
}

.chat-send-btn:hover {
    background: #000000;
}

@media (max-width: 1024px) {
    .messages-container {
        grid-template-columns: 320px 1fr;
    }
}

@media (max-width: 768px) {
    .messages-container {
        grid-template-columns: 1fr;
    }
    
    .messages-sidebar {
        display: none;
    }
}

/* Profile Page Styles */
.profile-page {
    padding: 40px 0;
    min-height: calc(100vh - 160px);
    background-color: #f5f5f3;
}

.profile-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.profile-avatar i {
    font-size: 40px;
    color: #ffffff;
}

.profile-name {
    font-size: 24px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0 0 8px 0;
}

.profile-email {
    font-size: 14px;
    color: #706f6c;
    margin: 0 0 16px 0;
}

.profile-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.profile-rating i {
    color: #fbc02d;
    font-size: 18px;
}

.rating-value {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b18;
}

.rating-count {
    font-size: 14px;
    color: #706f6c;
}

.btn-edit-profile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid #d4d4d1;
    border-radius: 8px;
    background: #ffffff;
    color: #1b1b18;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-edit-profile:hover {
    background: #f5f5f3;
    border-color: #706f6c;
}

.btn-edit-profile i {
    font-size: 14px;
}

.action-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.action-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.action-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.action-card-icon i {
    font-size: 24px;
}

.action-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0 0 8px 0;
}

.action-card-value {
    font-size: 20px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0 0 8px 0;
}

.action-card-desc {
    font-size: 13px;
    color: #706f6c;
    margin: 0;
    line-height: 1.4;
}

.subscription-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

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

.subscription-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.subscription-info i {
    font-size: 24px;
    margin-top: 2px;
}

.subscription-title {
    font-size: 16px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0 0 4px 0;
}

.subscription-desc {
    font-size: 14px;
    color: #706f6c;
    margin: 0;
}

.subscription-badge {
    background-color: #4caf50;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.btn-manage-subscription {
    width: 100%;
    padding: 12px 24px;
    background-color: #1b1b18;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

a.btn-manage-subscription {
    display: block;
    text-align: center;
    text-decoration: none;
}

.btn-manage-subscription:hover {
    background-color: #2d2d2a;
}

.settings-list {
    background-color: #f5f5f3;
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 24px;
    overflow: hidden;
}

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    text-decoration: none;
    color: #1b1b18;
    transition: background-color 0.2s;
    border-radius: 8px;
    background: white;
    /* padding-bottom: 12px; */
    margin-top: 10px;
}

.settings-item:hover {
    background-color: #e8e8e6;
}

.settings-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

.settings-text {
    font-size: 15px;
    font-weight: 500;
    color: #1b1b18;
}

.settings-arrow {
    font-size: 14px;
    color: #706f6c;
    opacity: 0.6;
}

.btn-logout {
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    color: #dc2626;
    border: 1px solid #dc2626;
    border-radius: 32px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-logout:hover {
    background-color: #dc2626;
    color: #ffffff;
}

.btn-logout i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .profile-page {
        padding: 24px 0;
    }

    .profile-card {
        padding: 32px 20px;
    }

    .action-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .action-card {
        padding: 20px;
    }

    .subscription-card {
        padding: 20px;
    }

    .settings-item {
        padding: 14px;
    }
}

/* Wallet Page Styles */
.wallet-page {
    padding: 40px 0;
    min-height: calc(100vh - 160px);
    background: #f5f5f3;
}

.wallet-header {
    margin-bottom: 32px;
}

.wallet-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0 0 8px 0;
}

.wallet-subtitle {
    font-size: 16px;
    color: #706f6c;
    margin: 0;
}

.balance-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.balance-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.balance-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.balance-card-icon i {
    font-size: 24px;
}

.balance-card-content {
    flex: 1;
}

.balance-card-label {
    font-size: 14px;
    color: #706f6c;
    margin: 0 0 8px 0;
}

.balance-card-amount {
    font-size: 28px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0 0 4px 0;
}

.balance-card-desc {
    font-size: 13px;
    color: #706f6c;
    margin: 0;
}

.wallet-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.btn-add-funds {
    flex: 1;
    padding: 14px 24px;
    background-color: #2196f3;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-add-funds:hover {
    background-color: #1976d2;
}

.btn-add-funds i {
    font-size: 14px;
}

.btn-withdraw {
    flex: 1;
    padding: 14px 24px;
    background-color: #ffffff;
    color: #1b1b18;
    border: 1px solid #d4d4d1;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-withdraw:hover {
    background-color: #f5f5f3;
    border-color: #706f6c;
}

.btn-withdraw i {
    font-size: 14px;
}

.transaction-section {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
}

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

.transaction-title {
    font-size: 20px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0;
}

.export-csv-link {
    font-size: 14px;
    color: #706f6c;
    text-decoration: none;
    transition: color 0.2s;
}

.export-csv-link:hover {
    color: #1b1b18;
}

.transaction-search {
    position: relative;
    margin-bottom: 20px;
}

.transaction-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #706f6c;
    font-size: 16px;
}

.transaction-search .search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #d4d4d1;
    border-radius: 8px;
    font-size: 14px;
    background-color: #ffffff;
    color: #1b1b18;
    transition: border-color 0.2s;
}

.transaction-search .search-input:focus {
    outline: none;
    border-color: #2196f3;
}

.transaction-table-wrapper {
    overflow-x: auto;
}

.transaction-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.transaction-table thead {
    background-color: #f5f5f3;
}

.transaction-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #706f6c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transaction-table tbody tr {
    border-bottom: 1px solid #e8e8e6;
    transition: background-color 0.2s;
}

.transaction-table tbody tr:hover {
    background-color: #fafafa;
}

.transaction-table tbody tr:last-child {
    border-bottom: none;
}

.transaction-table td {
    padding: 16px;
    font-size: 14px;
    color: #1b1b18;
}

.transaction-type {
    display: flex;
    align-items: center;
    gap: 8px;
}

.transaction-type i {
    font-size: 14px;
}

.transaction-type span {
    font-weight: 500;
}

.amount-positive {
    color: #4caf50;
    font-weight: 600;
}

.amount-negative {
    color: #1b1b18;
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-completed {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-processing {
    background-color: #e3f2fd;
    color: #1976d2;
}

.status-failed {
    background-color: #ffebee;
    color: #c62828;
}

@media (max-width: 1024px) {
    .balance-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .wallet-page {
        padding: 24px 0;
    }

    .wallet-title {
        font-size: 28px;
    }

    .wallet-actions {
        flex-direction: column;
    }

    .transaction-section {
        padding: 20px;
    }

    .transaction-table-wrapper {
        overflow-x: scroll;
    }

    .transaction-table {
        min-width: 800px;
    }

    .transaction-table th,
    .transaction-table td {
        padding: 12px;
        font-size: 13px;
    }
}

/* Subscription Page Styles */
.subscription-page {
    padding: 40px 0;
    min-height: calc(100vh - 160px);
    background-color: #f5f5f3;
}

.subscription-header {
    margin-bottom: 24px;
}

.subscription-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0 0 8px 0;
}

.subscription-subtitle {
    font-size: 16px;
    color: #706f6c;
    margin: 0;
}

.subscription-info-banner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background-color: #e3f2fd;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.subscription-info-banner .info-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subscription-info-banner .info-icon i {
    color: #2196f3;
    font-size: 16px;
}

.subscription-info-banner .info-text h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0 0 4px 0;
}

.subscription-info-banner .info-text p {
    font-size: 14px;
    color: #374151;
    margin: 0;
}

.subscription-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.current-plan-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    grid-row: span 2;
}

.current-plan-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.plan-label-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-label {
    font-size: 13px;
    color: #706f6c;
}

.plan-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 999px;
    background-color: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
}

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

.plan-menu-btn {
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
}

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

.plan-price-row {
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.plan-price .currency {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b18;
}

.plan-price .amount {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
}

.plan-price .per {
    font-size: 14px;
    color: #6b7280;
}

.next-billing {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.plan-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.btn-manage-plan {
    flex: 1;
    padding: 12px 20px;
    border-radius: 999px;
    border: none;
    background: radial-gradient(circle at 0 0, #111827, #020617);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.35);
}

.btn-manage-plan:hover {
    filter: brightness(1.05);
}

.btn-cancel-plan {
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid #d4d4d1;
    background-color: #ffffff;
    color: #1b1b18;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.btn-cancel-plan:hover {
    background-color: #f5f5f3;
}

.side-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.side-card-icon-blue {
    background-color: #e3f2fd;
}

.side-card-icon-purple {
    background-color: #f3e5f5;
}

.side-card-icon i {
    font-size: 20px;
    color: #374151;
}

.side-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.side-card-label {
    font-size: 13px;
    color: #6b7280;
}

.side-card-main {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.side-card-sub {
    font-size: 14px;
    color: #6b7280;
}

.payment-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-brand {
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background-color: #2563eb;
    color: #ffffff;
}

.payment-mask {
    font-size: 14px;
    color: #111827;
}

.link-button {
    padding: 0;
    border: none;
    background: none;
    font-size: 13px;
    color: #2563eb;
    cursor: pointer;
    text-decoration: none;
}

.link-button:hover {
    text-decoration: underline;
}

.subscription-section {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 16px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.benefit-icon-blue {
    background-color: #e3f2fd;
}

.benefit-icon-green {
    background-color: #e8f5e9;
}

.benefit-icon-purple {
    background-color: #f3e5f5;
}

.benefit-icon-yellow {
    background-color: #fff9c4;
}

.benefit-icon-pink {
    background-color: #fce4ec;
}

.benefit-icon i {
    font-size: 18px;
    color: #111827;
}

.benefit-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.benefit-card p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.comparison-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.comparison-card {
    border-radius: 16px;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
}

.comparison-premium {
    border-color: #a7f3d0;
    box-shadow: 0 0 0 1px #a7f3d0;
}

.comparison-header {
    margin-bottom: 10px;
}

.comparison-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comparison-list li {
    font-size: 13px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-list i {
    font-size: 13px;
    color: #22c55e;
}

.comparison-free .comparison-list i {
    color: #6b7280;
}

.billing-history-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.billing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.billing-row:last-child {
    border-bottom: none;
}

.billing-info .billing-title {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin: 0 0 2px 0;
}

.billing-info .billing-date {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.billing-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.billing-amount {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.billing-status {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 999px;
}

.billing-status-paid {
    background-color: #e8f5e9;
    color: #2e7d32;
}

/* History / Object Rentals Dashboard */
.history-page {
    padding: 40px 0;
    min-height: calc(100vh - 160px);
    background: #F9FAFB;
}

.history-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.history-title {
    font-size: 28px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0 0 6px 0;
}

.history-subtitle {
    font-size: 15px;
    color: #706f6c;
    margin: 0;
}

.btn-add-listing {
    padding: 10px 20px;
    border-radius: 999px;
    background-color: #111827;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-add-listing:hover {
    background-color: #1f2937;
    color: #ffffff;
}

.btn-add-listing i {
    font-size: 12px;
}

.history-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.history-stat-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 18px 22px;
}

.history-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history-stat-icon-blue {
    background-color: #e3f2fd;
}

.history-stat-icon-purple {
    background-color: #f3e5f5;
}

.history-stat-icon-yellow {
    background-color: #fff9c4;
}

.history-stat-icon-green {
    background-color: #e8f5e9;
}

.history-stat-icon i {
    font-size: 18px;
    color: #111827;
}

.history-stat-label {
    font-size: 13px;
    color: #6b7280;
    margin: 8px 0 0 0;
}

.history-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.history-section-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    margin-bottom: 20px;
}

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

.history-section-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.history-section-meta {
    font-size: 13px;
    color: #6b7280;
}

/* ===== Self Delivery / Request Details ===== */

.self-delivery-page {
    padding: 40px 0;
    background: #ffffff;
}

.self-delivery-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
    margin-bottom: 16px;
}

.self-delivery-back-link i {
    font-size: 11px;
    flex-shrink: 0;
    line-height: 1;
}

.self-delivery-header {
    margin-bottom: 20px;
}

.self-delivery-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.self-delivery-id {
    font-size: 13px;
    font-weight: 400;
    color: #9ca3af;
    margin-left: 8px;
}

.self-delivery-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
    gap: 24px;
}

.self-delivery-left,
.self-delivery-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.self-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid #e5e7eb;
}

.self-card-section {
    overflow: hidden;
}

.self-card-header {
    padding: 16px 20px 4px 20px;
}

.self-card-header-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.self-card-header-main h2 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 2px 0;
}

.self-card-header-main p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.self-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.self-card-icon-blue {
    background-color: #e5f0ff;
    color: #2563eb;
}

.self-card-icon-teal {
    background-color: #d1fae5;
    color: #047857;
}

.self-card-icon-purple {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.self-card-icon-red {
    background-color: #fee2e2;
    color: #b91c1c;
}

.self-card-icon-pink {
    background-color: #fce7f3;
    color: #be185d;
}

.self-card-icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.self-card-icon-gray {
    background-color: #e5e7eb;
    color: #4b5563;
}

.self-card-icon-owner {
    background-color: #eef2ff;
    color: #4f46e5;
    font-size: 12px;
    font-weight: 600;
}

.self-card-icon-owner span {
    text-transform: uppercase;
}

.self-card-body {
    padding: 0 20px 16px 20px;
}

.self-card-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.self-info-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 14px;
    border-radius: 10px;
    background-color: #f9fafb;
}

.self-info-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
}

.self-info-primary {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.self-info-secondary {
    font-size: 12px;
    color: #9ca3af;
    display: block;
}

.self-info-value {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2px;
    margin-left: 32px;
}

.self-info-value-inline {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 32px);
    margin-left: 32px;
}

.self-info-label-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #eef2ff;
    color: #4f46e5;
    font-size: 12px;
}

.self-info-label-icon-neutral {
    background-color: #f3f4f6;
    color: #111827;
}

.self-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 500;
}

.self-info-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #22c55e;
}

.self-total-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid #e5e7eb;
    background-color: #ecfdf5;
}

.self-total-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #047857;
    font-weight: 700;
}

.self-total-badge {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background-color: #bbf7d0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #047857;
}

.self-total-label-text {
    font-weight: 700;
}

.self-total-value {
    font-size: 22px;
    font-weight: 800;
    color: #047857;
}

.self-details-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 18px;
}

.self-card-your-details {
    margin-top: 16px;
}

.self-card-your-details .self-card-body {
    padding: 14px 24px 18px 24px;
}

.self-detail-label {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.self-detail-value {
    font-size: 13px;
    color: #111827;
    font-weight: 500;
}

.self-address-main {
    font-size: 13px;
    color: #111827;
    margin: 0;
}

.self-address-panel {
    padding: 10px 14px;
    border-radius: 10px;
    background-color: #f9fafb;
    margin-bottom: 14px;
}

.self-map-placeholder {
    position: relative;
    height: 210px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    overflow: hidden;
}

.self-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background-color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(239, 68, 68, 0.5);
}

.self-map-tag {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: #ffffff;
    font-size: 11px;
    color: #4b5563;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.self-address-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #ef4444;
}

.self-docs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 6px;
}

.self-doc-pill {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    cursor: pointer;
    flex: 1 1 45%;
}

.self-doc-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
}

.self-doc-icon-pdf {
    background-color: #fee2e2;
    color: #f97373;
}

.self-doc-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.self-doc-name {
    font-size: 13px;
    color: #111827;
    font-weight: 500;
}

.self-doc-meta {
    font-size: 11px;
    color: #9ca3af;
}

.self-doc-status-check {
    margin-left: auto;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 2px solid #22c55e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #22c55e;
}

.self-card-documents .self-card-header-main h2 {
    font-size: 14px;
}

.self-card-documents .self-card-body {
    padding: 14px 22px 18px 22px;
}

.self-card-notes .self-card-body {
    padding: 16px 22px 20px 22px;
}

/* Delivery service / charge cards (right column) */
.self-card-delivery-service .self-card-body,
.self-card-delivery-charge .self-card-body {
    padding: 16px 20px 18px 20px;
}

.self-card-body-delivery {
    padding: 16px 20px 18px 20px;
}

.self-card-delivery-service {
    max-width: 440px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
    border-top: 0.64px solid #0000000D;
}

.self-delivery-service-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.self-delivery-service-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.self-delivery-service-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #38bdf8, #2563eb);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
}

.self-delivery-service-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.self-delivery-service-partner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #2563eb;
}

.self-delivery-service-partner i {
    font-size: 11px;
}

.self-delivery-service-sub {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #9ca3af;
}

.self-delivery-service-sub i {
    font-size: 11px;
}

.self-card-delivery-charge {
    margin-top: 12px;
}

.self-delivery-fee-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 6px;
}

.self-delivery-fee-label {
    font-size: 12px;
    font-weight: 500;
    color: #16a34a;
}

.self-delivery-fee-amount {
    font-size: 18px;
    font-weight: 700;
    color: #16a34a;
}

.self-delivery-fee-note {
    font-size: 11px;
    color: #9ca3af;
    margin: 0;
}

.self-notes-text {
    font-size: 13px;
    color: #4b5563;
    margin: 0;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 14px;
}

.self-car-image-wrapper {
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

.self-car-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.self-card-right {
    padding-bottom: 10px;
}

.self-card-status {
    position: absolute;
}

.self-card.self-card-right {
    position: relative;
    overflow: hidden;
}

.self-card-status-pending {
    top: 14px;
    left: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: #fef3c7;
    color: #b45309;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.self-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background-color: #facc15;
}

.self-car-body {
    padding-top: 14px;
}

.self-car-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px 0;
}

.self-car-price-main {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.self-car-price-main span {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.self-car-sub {
    font-size: 12px;
    color: #9ca3af;
    margin: 0 0 10px 0;
}

.self-car-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.self-car-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #f59e0b;
}

.self-car-rating .self-car-rating-muted {
    color: #9ca3af;
}

.self-car-rating i {
    font-size: 12px;
}

.self-owner-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.self-owner-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.self-owner-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #f59e0b;
}

.self-owner-rating .self-owner-rating-muted {
    color: #9ca3af;
}

.self-owner-rating i {
    font-size: 12px;
}

.self-owner-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background-color: #f9fafb;
}

.self-owner-label {
    font-size: 11px;
    color: #9ca3af;
}

.self-owner-value {
    font-size: 13px;
    color: #111827;
    font-weight: 500;
}

.self-owner-field-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e5f0ff;
    color: #2563eb;
    font-size: 12px;
}

.self-owner-field-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.self-card-owner .self-card-header-main .self-card-icon-owner {
    background-color: #ffedd5;
    color: #ea580c;
}

.self-owner-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 999px;
    background-color: #ffe4e6;
}

.self-owner-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.self-owner-avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: #f97373;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

.self-owner-status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: #22c55e;
    border: 2px solid #fee2e2;
}

.self-owner-chat-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background-color: #fecaca;
    color: #b91c1c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.self-card-owner .self-card-body {
    padding: 16px 20px 20px 20px;
}

.self-card-owner {
    margin-top: 16px;
}

.self-detail-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 11px;
}

.self-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.self-detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.self-cancel-button {
    margin-top: 4px;
    width: 100%;
    border-radius: 999px;
    border: 1px solid #fecaca;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    background-color: #fef2f2;
    color: #b91c1c;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .self-delivery-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ===== My Activity – Filters, Table, Statuses ===== */

.history-stat-icon-gray {
    background-color: #e5e7eb;
}

.activity-summary-grid .activity-stat-value-green {
    color: #16a34a;
}

.activity-summary-grid .activity-stat-value-pending {
    color: #ea8a15;
}

.activity-summary-grid .activity-stat-value-completed {
    color: #374151;
}

/* Filters row */
.activity-filters {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.activity-filters-left,
.activity-filters-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.activity-filters-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #9ca3af;
}

.activity-type-pills {
    display: inline-flex;
    gap: 8px;
}

.activity-pill {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    background-color: #ffffff;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.activity-pill:hover {
    background-color: #f3f4f6;
}

.activity-pill-active {
    background-color: #111827;
    color: #ffffff;
    border-color: #111827;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.22);
}

.activity-pill-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.activity-pill-icon-all {
    background-color: #e5e7eb;
    color: #374151;
}

.activity-pill-icon-rental {
    background-color: #e0f2fe;
    color: #0369a1;
}

.activity-pill-icon-service {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.activity-status-select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    min-width: 220px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    position: relative;
}

.activity-status-select i {
    font-size: 13px;
    color: #9ca3af;
}

.activity-status-select select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    color: #374151;
    width: 100%;
    padding-right: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.activity-status-select::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: #9ca3af;
    position: absolute;
    right: 12px;
    pointer-events: none;
}

/* Return Product section */
.activity-return-section {
    margin-bottom: 24px;
}

.activity-return-sub {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.activity-return-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.activity-return-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.activity-return-card:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.activity-return-card__thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e7eb;
}

.activity-return-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.activity-return-card__body {
    flex: 1;
    min-width: 0;
}

.activity-return-card__title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.activity-return-card__meta {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 8px 0;
}

.activity-return-card__action {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.activity-return-card:hover .activity-return-card__action {
    color: #1d4ed8;
}

/* Transactions table */
.activity-table-card {
    margin-bottom: 24px;
}

.activity-table-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px 0;
}

.activity-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.activity-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: #111827;
    table-layout: fixed;
}

.activity-table thead tr {
    background-color: #f9fafb;
}

.activity-table th,
.activity-table td {
    padding: 12px 16px;
    text-align: left;
    white-space: normal;
}

.activity-table th:nth-child(1),
.activity-table td:nth-child(1) {
    width: 12%;
}

.activity-table th:nth-child(2),
.activity-table td:nth-child(2) {
    width: 40%;
}

.activity-table th:nth-child(3),
.activity-table td:nth-child(3) {
    width: 22%;
}

.activity-table th:nth-child(4),
.activity-table td:nth-child(4) {
    width: 13%;
}

.activity-table th:nth-child(5),
.activity-table td:nth-child(5) {
    width: 16%;
}

.activity-table th {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.activity-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

.activity-table tbody tr:hover {
    background-color: #f9fafb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

.activity-table-amount {
    text-align: right;
}

.activity-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.activity-type-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.activity-type-rental {
    background-color: #e0f2fe;
    color: #0369a1;
}

.activity-type-service {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
}

.activity-item-thumb img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
}

.activity-item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.activity-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.activity-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.activity-dates p {
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    margin: 0 0 2px 0;
}

.activity-date-sub {
    font-size: 11px;
    color: #9ca3af;
}

.activity-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    gap: 6px;
}

.activity-status-badge i {
    font-size: 10px;
}

.activity-status-active {
    background-color: #dcfce7;
    color: #15803d;
}

.activity-status-pending {
    background-color: #fef3c7;
    color: #b45309;
}

.activity-status-completed {
    background-color: #e5e7eb;
    color: #374151;
}

.activity-status-approved {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.activity-status-cancelled {
    background-color: #fee2e2;
    color: #b91c1c;
}

.activity-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.activity-amount-main {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.activity-amount-sub {
    font-size: 11px;
    color: #9ca3af;
}

a.activity-link-inline {
    color: inherit;
    text-decoration: none;
}

a.activity-link-inline:hover {
    text-decoration: none;
}

@media (max-width: 1024px) {
    .activity-filters {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .history-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.rental-request-row {
display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    /* border-bottom: 1px solid #e5e7eb; */
    background: #F9FAFB;
    margin-top: 11px;
    padding: 10px;
    border-radius: 11px;
}

.rental-request-row:last-child {
    border-bottom: none;
}

.rental-request-main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rental-request-image {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.rental-request-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.rental-request-title-row h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.request-price {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.rental-request-user {
    font-size: 13px;
    color: #6b7280;
    margin: 2px 0;
}

.rental-request-dates {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rental-request-dates i {
    font-size: 12px;
}

.rental-request-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.request-status {
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 999px;
}

.request-status-pending {
    background-color: #e0f2fe;
    color: #1d4ed8;
}

.request-action-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.request-action-btn {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
}

.request-accept {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.request-reject {
    background-color: #ffebee;
    color: #c62828;
}

.request-view-btn {
    padding: 6px 14px;
    border-radius: 9px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    font-size: 13px;
    color: #111827;
    cursor: pointer;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

.current-rental-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.current-rental-row:last-child {
    border-bottom: none;
}

.current-rental-main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.current-rental-image {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.current-rental-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 2px 0;
}

.current-rental-user {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 4px 0;
}

.current-rental-meta {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    gap: 10px;
}

.current-rental-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.rental-status-badge {
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 999px;
}

.status-in-progress {
    background-color: #e0f2fe;
    color: #1d4ed8;
}

.status-accepted {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.active-listings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.listing-card {
    border-radius: 16px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.listing-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.listing-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.listing-badge-active {
    background-color: #22c55e;
    color: #ffffff;
}

.listing-body {
    padding: 14px 16px 16px 16px;
}

.listing-body h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.listing-category {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 8px 0;
}

.listing-price {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 10px 0;
}

.listing-price span {
    font-weight: 600;
    color: #111827;
}

.listing-manage-btn {
    width: 100%;
    padding: 10px;
    border-radius: 999px;
    border: none;
    background-color: #020617;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.earnings-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.earning-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #ececec;
}

.earning-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.earning-thumb {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
}

.earning-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.earning-title {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin: 0 0 2px 0;
}

.earning-sub {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.earning-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.earning-amount {
    font-size: 14px;
    font-weight: 600;
    color: #16a34a;
}

.earning-date {
    font-size: 12px;
    color: #6b7280;
}

@media (max-width: 1024px) {
    .history-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .active-listings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .history-page {
        padding: 24px 0;
    }

    .history-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .history-stats-grid {
        grid-template-columns: 1fr;
    }

    .current-rental-row,
    .rental-request-row,
    .earning-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .rental-request-actions,
    .current-rental-status,
    .earning-meta {
        align-items: flex-start;
    }

    .active-listings-grid {
        grid-template-columns: 1fr;
    }
}

/* Service History Page */
.service-history-page {
    padding: 40px 0;
    min-height: calc(100vh - 160px);
    background: #F9FAFB;
}

.service-history-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.service-history-title {
    font-size: 28px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0 0 6px 0;
}

.service-history-subtitle {
    font-size: 15px;
    color: #706f6c;
    margin: 0;
}

.btn-add-service,
a.btn-add-service {
    padding: 10px 20px;
    border-radius: 999px;
    background-color: #111827;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}

a.btn-add-service:hover {
    background-color: #2d2d2a;
}

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

.premium-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: #E9FFF2;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    border: 1px solid #21885c5c;
}

.premium-banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.premium-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #D8F5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-icon-circle i {
    color: #21885C;
    font-size: 24px;
}

.premium-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #21885C;
    margin: 0 0 4px 0;
}

.premium-text p {
    font-size: 14px;
    color: #21885C;
    margin: 0;
    font-weight: 400;
}

.btn-manage-subscription-banner {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #21885C;
    background: #ffffff;
    color: #21885C;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

a.btn-manage-subscription-banner {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-manage-subscription-banner:hover {
    background-color: #f5f5f3;
}

.service-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.service-stat-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-stat-icon-yellow {
    background-color: #fff9c4;
}

.service-stat-icon-purple {
    background-color: #f3e5f5;
}

.service-stat-icon-green {
    background-color: #e8f5e9;
}

.service-stat-icon-blue {
    background-color: #e3f2fd;
}

.service-stat-icon i {
    font-size: 18px;
    color: #111827;
}

.service-stat-label {
    font-size: 13px;
    color: #6b7280;
    margin: 8px 0 0 0;
}

.service-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.service-section-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    margin-bottom: 20px;
}

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

.service-section-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.service-section-meta {
    font-size: 13px;
    color: #6b7280;
}

.service-request-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.service-request-row:last-child {
    border-bottom: none;
}

.service-request-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
}

.service-request-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.service-request-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.service-request-client {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 6px 0;
}

.service-request-desc {
    font-size: 13px;
    color: #374151;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.service-request-details {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #6b7280;
}

.service-request-details i {
    font-size: 12px;
    margin-right: 4px;
}

.service-request-price {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.service-request-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Service request modal: action buttons one row, same height and alignment */
.service-modal-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 0;
    padding-bottom: 4px;
    width: 100%;
    flex-shrink: 0;
}

.service-modal-actions .service-request-btn-primary,
.service-modal-actions .service-request-btn-secondary {
    flex: 1 1 0% !important;
    min-width: 0;
    width: auto;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    border-width: 2px !important;
    border-style: solid !important;
}

.service-modal-actions .service-request-btn-primary {
    border-color: #1b1b18 !important;
}

.service-modal-actions .service-request-btn-secondary {
    border-color: #e3e3e0 !important;
}

.service-request-status {
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 999px;
}

.service-status-pending {
    background-color: #e0f2fe;
    color: #1d4ed8;
}

.service-action-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.service-accept {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.service-reject {
    background-color: #ffebee;
    color: #c62828;
}

.service-view-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background-color: #111827;
    font-size: 13px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.service-view-btn:hover {
    background-color: #1f2937;
}

.active-job-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.active-job-row:last-child {
    border-bottom: none;
}

.active-job-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
}

.active-job-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.active-job-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.active-job-client {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 8px 0;
}

.active-job-details {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #6b7280;
}

.active-job-details i {
    font-size: 12px;
    margin-right: 4px;
}

.active-job-price {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.active-job-status {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.job-status-badge {
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

.status-in-progress-job {
    background-color: #FAF5FF;
    color: #8200DB;
}

.status-accepted-job {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.completed-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.completed-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}

.completed-service-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.completed-service-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.completed-service-main h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 2px 0;
}

.completed-service-client {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.completed-service-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.completed-service-price {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.completed-service-rating {
    display: flex;
    gap: 2px;
}

.completed-service-rating i {
    font-size: 12px;
    color: #fbc02d;
}

.service-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.earnings-overview {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.earnings-overview-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #F9FAFB;
    padding: 12px;
    border-radius: 12px;
}
.earnings-plus-overview-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #ECFDF5;
    padding: 12px;
    border-radius: 12px;
}

.earnings-overview-item-blue {
    background-color: #e3f2fd;
    border-radius: 12px;
    padding: 16px;
    
}

.earnings-label {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.earnings-label-green {
    color: #22c55e;
}

.earnings-amount {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.earnings-amount-green {
    color: #21885C;
}

.earnings-amount-grey {
    color: #6b7280;
}

.earnings-amount-blue {
    color: #2563eb;
}

.earnings-change {
    font-size: 12px;
    color: #22c55e;
    margin: 0;
    font-weight: 400;
}

.btn-view-report {
    width: 100%;
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    background-color: #111827;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .service-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-bottom-grid {
        grid-template-columns: 1fr;
    }
}

/* Post Object Step 1 Page */
.post-object-page {
    padding: 40px 0 60px 0;
    min-height: calc(100vh - 160px);
    background-color: #f5f5f3;
}

.post-object-header {
    margin-bottom: 24px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #706f6c;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #1b1b18;
}

.back-link i {
    font-size: 12px;
}

.post-object-title-section {
    margin-bottom: 24px;
}

.post-object-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0 0 8px 0;
}

.post-object-subtitle {
    font-size: 16px;
    color: #706f6c;
    margin: 0;
}

.step-progress-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    gap: 8px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 100px;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f5f5f3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.step-item.step-active .step-icon {
    background-color: #1b1b18;
    color: #ffffff;
}

.step-item:not(.step-active) .step-icon {
    background-color: #f5f5f3;
    color: #706f6c;
}

.step-icon i {
    font-size: 20px;
}

.step-label {
    font-size: 12px;
    color: #706f6c;
    text-align: center;
    font-weight: 500;
}

.step-item.step-active .step-label {
    color: #1b1b18;
    font-weight: 600;
}

.step-item.step-completed .step-icon {
    background-color: #10b981;
    color: #ffffff;
}

.step-item.step-completed .step-label {
    color: #1b1b18;
    font-weight: 500;
}

.step-item.step-active-final .step-icon {
    background-color: #1b1b18;
    border: 2px solid #10b981;
    color: #ffffff;
}

.step-item.step-active-final .step-label {
    color: #1b1b18;
    font-weight: 600;
}

.step-connector-completed {
    background: linear-gradient(to right, #10b981 0%, #10b981 100%);
}

.step-connector {
    flex: 1;
    height: 2px;
    /* background: repeating-linear-gradient(
        to right,
        #d4d4d1 0px,
        #d4d4d1 4px,
        transparent 4px,
        transparent 8px
    ); */
    min-width: 20px;
    margin: 0 4px;
}

.post-object-form-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.form-section-header {
    margin-bottom: 24px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0 0 4px 0;
}

.form-section-subtitle {
    font-size: 14px;
    color: #706f6c;
    margin: 0;
}

.post-object-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #1b1b18;
}

.required {
    color: #dc2626;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d4d4d1;
    border-radius: 8px;
    font-size: 14px;
    color: #1b1b18;
    background-color: #ffffff;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1b1b18;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-helper {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.price-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.price-currency {
    position: absolute;
    left: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1b1b18;
    z-index: 1;
}

.price-input {
    padding-left: 36px !important;
}

.pricing-tip-box {
    background-color: #e0f2fe;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.pricing-tip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pricing-tip-header i {
    font-size: 16px;
    color: #0284c7;
}

.pricing-tip-header span {
    font-size: 14px;
    font-weight: 600;
    color: #0284c7;
}

.pricing-tip-link {
    display: block;
    font-size: 14px;
    color: #0284c7;
    text-decoration: none;
    transition: color 0.2s;
}

.pricing-tip-link:hover {
    color: #0369a1;
    text-decoration: underline;
}

.protection-info-box {
    background-color: #e8f5e9;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.protection-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.protection-info-header i {
    font-size: 16px;
    color: #2e7d32;
}

.protection-info-header span {
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
}

.protection-info-text {
    font-size: 14px;
    color: #2e7d32;
    margin: 0;
    line-height: 1.5;
}

.privacy-notice-box {
    background-color: #f5f5f3;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.privacy-notice-box i {
    font-size: 16px;
    color: #706f6c;
    margin-top: 2px;
    flex-shrink: 0;
}

.privacy-notice-box p {
    font-size: 14px;
    color: #706f6c;
    margin: 0;
    line-height: 1.5;
}

.delivery-option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #d4d4d1;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.2s;
    margin-bottom: 16px;
}

.delivery-option-card:hover {
    border-color: #706f6c;
}

.delivery-option-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.delivery-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: #f5f5f3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.delivery-option-icon i {
    font-size: 20px;
    color: #1b1b18;
}

.delivery-option-info {
    flex: 1;
}

.delivery-option-title {
    font-size: 16px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0 0 4px 0;
}

.delivery-option-description {
    font-size: 14px;
    color: #706f6c;
    margin: 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d4d4d1;
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: #ffffff;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #1b1b18;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px #1b1b18;
}

.image-upload-area {
    width: 100%;
    min-height: 300px;
    border: 2px dashed #d4d4d1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #fafafa;
    margin-bottom: 24px;
}

.image-upload-area:hover {
    border-color: #706f6c;
    background-color: #f5f5f3;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #706f6c;
}

.upload-placeholder i {
    font-size: 48px;
    color: #706f6c;
}

.upload-placeholder p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #1b1b18;
}

.uploaded-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.uploaded-image-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d4d4d1;
}

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

.remove-image-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.remove-image-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

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

.photo-tips-box {
    background-color: #e0f2fe;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.photo-tips-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.photo-tips-header i {
    font-size: 16px;
    color: #0284c7;
}

.photo-tips-header span {
    font-size: 14px;
    font-weight: 600;
    color: #0284c7;
}

.photo-tips-list {
    margin: 0;
    padding-left: 24px;
    list-style-type: disc;
}

.photo-tips-list li {
    font-size: 14px;
    color: #0284c7;
    margin-bottom: 8px;
    line-height: 1.5;
}

.photo-tips-list li:last-child {
    margin-bottom: 0;
}

.review-object-summary {
    display: flex;
    gap: 24px;
    padding: 24px;
    border: 1px solid #d4d4d1;
    border-radius: 8px;
    background-color: #ffffff;
    margin-bottom: 24px;
}

.review-object-image {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    background-color: #f5f5f3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-object-image i {
    font-size: 64px;
    color: #706f6c;
}

.review-object-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-object-name {
    font-size: 24px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0;
}

.review-object-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-category-badge {
    padding: 4px 12px;
    border-radius: 12px;
    background-color: #e0f2fe;
    color: #0284c7;
    font-size: 12px;
    font-weight: 600;
}

.review-object-id {
    font-size: 14px;
    color: #706f6c;
}

.review-object-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-price-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-price-label {
    font-size: 14px;
    color: #706f6c;
}

.review-price-value {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b18;
}

.review-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.review-detail-card {
    padding: 20px;
    border: 1px solid #d4d4d1;
    border-radius: 8px;
    background-color: #ffffff;
}

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

.review-detail-header i {
    font-size: 20px;
    color: #706f6c;
}

.review-detail-title {
    font-size: 16px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0;
}

.review-detail-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-detail-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-detail-label {
    font-size: 12px;
    color: #706f6c;
}

.review-detail-value {
    font-size: 14px;
    color: #1b1b18;
    font-weight: 500;
}

.review-detail-note {
    font-size: 12px;
    color: #dc2626;
}

.review-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.review-status-active {
    background-color: #10b981;
}

.review-status-inactive {
    background-color: #d4d4d1;
}

.review-confirmation {
    margin-bottom: 24px;
    padding: 20px;
    background-color: #f5f5f3;
    border-radius: 8px;
}

.review-confirmation-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.review-confirmation-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.confirmation-text {
    font-size: 14px;
    color: #1b1b18;
    line-height: 1.5;
}

.confirmation-link {
    color: #1b1b18;
    text-decoration: underline;
    font-weight: 600;
}

.confirmation-link:hover {
    color: #706f6c;
}

.btn-publish {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    background-color: #1b1b18;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-publish:hover {
    background-color: #2d2d2a;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

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

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #d4d4d1;
    background-color: #ffffff;
    color: #1b1b18;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back:hover {
    background-color: #f5f5f3;
    border-color: #706f6c;
}

.btn-back i {
    font-size: 12px;
}

.btn-save-draft {
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #d4d4d1;
    background-color: #ffffff;
    color: #1b1b18;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-save-draft:hover {
    background-color: #f5f5f3;
    border-color: #706f6c;
}

.btn-continue {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    background-color: #1b1b18;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-continue:hover {
    background-color: #2d2d2a;
}

.step-indicator {
    text-align: center;
    font-size: 14px;
    color: #706f6c;
    font-weight: 500;
}

@media (max-width: 768px) {
    .post-object-page {
        padding: 24px 0 40px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .uploaded-images-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }

    .image-upload-area {
        min-height: 250px;
    }

    .review-object-summary {
        flex-direction: column;
    }

    .review-object-image {
        width: 100%;
        height: 200px;
    }

    .review-details-grid {
        grid-template-columns: 1fr;
    }

    .post-service-page {
        padding: 24px 0 40px 0;
    }

    .post-service-title {
        font-size: 28px;
    }

    .service-step-progress-card {
        padding: 20px 16px;
        gap: 4px;
    }

    .service-step-item {
        min-width: 80px;
    }

    .service-step-icon {
        width: 40px;
        height: 40px;
    }

    .service-step-icon i {
        font-size: 16px;
    }

    .service-step-label {
        font-size: 11px;
    }

    .post-service-form-card {
        padding: 24px 20px;
    }
}

/* Post Service Step 1 Styles */
.post-service-page {
    padding: 40px 0 60px 0;
    min-height: calc(100vh - 160px);
    background-color: #f5f5f3;
}

.post-service-header {
    margin-bottom: 24px;
}

.post-service-title-section {
    margin-bottom: 24px;
}

.post-service-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0 0 8px 0;
}

.post-service-subtitle {
    font-size: 16px;
    color: #706f6c;
    margin: 0;
}

.service-premium-banner {
    background-color: #E9FFF2;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.service-premium-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-premium-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #D8F5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-premium-icon-circle i {
    font-size: 24px;
    color: #21885C;
}

.service-premium-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #21885C;
    margin: 0 0 4px 0;
}

.service-premium-text p {
    font-size: 14px;
    color: #21885C;
    margin: 0;
}

.service-step-progress-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    gap: 8px;
}

.service-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 100px;
}

.service-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f5f5f3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.service-step-item.service-step-active .service-step-icon {
    background-color: #1b1b18;
    color: #ffffff;
}

.service-step-item:not(.service-step-active) .service-step-icon {
    background-color: #f5f5f3;
    color: #706f6c;
}

.service-step-icon i {
    font-size: 20px;
}

.service-step-label {
    font-size: 12px;
    color: #706f6c;
    text-align: center;
    font-weight: 500;
}

.service-step-item.service-step-active .service-step-label {
    color: #1b1b18;
    font-weight: 600;
}

.service-step-connector {
    flex: 1;
    height: 2px;
    background-color: #d4d4d1;
    min-width: 20px;
    margin: 0 4px;
}

.post-service-form-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.post-service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.description-tips-box {
    background-color: #e0f2fe;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.description-tips-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.description-tips-header i {
    font-size: 16px;
    color: #0284c7;
}

.description-tips-header span {
    font-size: 14px;
    font-weight: 600;
    color: #0284c7;
}

.description-tips-list {
    margin: 0;
    padding-left: 24px;
    list-style-type: disc;
}

.description-tips-list li {
    font-size: 14px;
    color: #0284c7;
    margin-bottom: 8px;
    line-height: 1.5;
}

.description-tips-list li:last-child {
    margin-bottom: 0;
}

.pricing-type-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}

.pricing-type-option {
    display: block;
    padding: 16px;
    border: 2px solid #d4d4d1;
    border-radius: 8px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
}

.pricing-type-option:hover {
    border-color: #706f6c;
}

.pricing-type-option input[type="radio"] {
    display: none;
}

.pricing-type-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-type-content i {
    font-size: 24px;
    color: #706f6c;
    flex-shrink: 0;
}

.pricing-type-content div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-type-title {
    font-size: 14px;
    font-weight: 600;
    color: #1b1b18;
    display: block;
}

.pricing-type-desc {
    font-size: 12px;
    color: #706f6c;
    display: block;
}

.pricing-type-option.pricing-type-selected {
    border-color: #1b1b18;
    background-color: #f5f5f3;
}

.pricing-type-option.pricing-type-selected .pricing-type-content i {
    color: #1b1b18;
}

.pricing-strategy-box {
    background-color: #e8f5e9;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.pricing-strategy-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pricing-strategy-header i {
    font-size: 16px;
    color: #2e7d32;
}

.pricing-strategy-header span {
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
}

.pricing-strategy-text {
    font-size: 14px;
    color: #2e7d32;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .post-object-title {
        font-size: 28px;
    }

    .step-progress-card {
        padding: 20px 16px;
        gap: 4px;
    }

    .step-item {
        min-width: 80px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon i {
        font-size: 16px;
    }

    .step-label {
        font-size: 11px;
    }

    .step-connector {
        min-width: 10px;
    }

    .post-object-form-card {
        padding: 24px 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-save-draft,
    .btn-continue {
        width: 100%;
    }

    .pricing-type-options {
        grid-template-columns: 1fr;
    }

    .working-days-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-location-options {
        grid-template-columns: 1fr;
    }

    .review-service-details-grid {
        grid-template-columns: 1fr;
    }

    .review-service-info {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .post-service-page {
        padding: 24px 0 40px 0;
    }

    .post-service-title {
        font-size: 28px;
    }

    .service-step-progress-card {
        padding: 20px 16px;
        gap: 4px;
    }

    .service-step-item {
        min-width: 80px;
    }

    .service-step-icon {
        width: 40px;
        height: 40px;
    }

    .service-step-icon i {
        font-size: 16px;
    }

    .service-step-label {
        font-size: 11px;
    }

    .post-service-form-card {
        padding: 24px 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-save-draft,
    .btn-continue {
        width: 100%;
    }

    .pricing-type-options {
        grid-template-columns: 1fr;
    }

    .working-days-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-location-options {
        grid-template-columns: 1fr;
    }

    .review-service-details-grid {
        grid-template-columns: 1fr;
    }

    .review-service-info {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .service-history-page {
        padding: 24px 0;
    }

    .service-history-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-stats-grid {
        grid-template-columns: 1fr;
    }

    .service-request-row,
    .active-job-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-request-actions,
    .active-job-status {
        align-items: flex-start;
        width: 100%;
    }

    .service-bottom-grid {
        grid-template-columns: 1fr;
    }

    .earnings-overview {
        grid-template-columns: 1fr;
    }
}

/* Rental History & Service History Styles */
.rental-history-list,
.service-history-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rental-history-item,
.service-history-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: #f9fafb;
    border-radius: 12px;
    transition: background-color 0.2s;
}

.rental-history-item:hover,
.service-history-item:hover {
    background-color: #f3f4f6;
}

.rental-history-image,
.service-history-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.rental-history-image img,
.service-history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rental-history-content,
.service-history-content {
    flex: 1;
}

.rental-history-content h3,
.service-history-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px 0;
}

.rental-history-user,
.service-history-provider {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 4px 0;
}

.rental-history-dates,
.service-history-dates {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rental-history-dates i,
.service-history-dates i {
    font-size: 12px;
}

.rental-history-price,
.service-history-price {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.rental-history-status,
.service-history-status {
    display: flex;
    align-items: center;
}

.status-completed {
    background-color: #e8f5e9;
    color: #2e7d32;
}
@media (max-width: 1024px) {
    .subscription-main-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .subscription-page {
        padding: 24px 0;
    }

    .subscription-title {
        font-size: 28px;
    }

    .subscription-main-grid {
        gap: 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .comparison-section {
        grid-template-columns: 1fr;
    }

    .subscription-section {
        padding: 16px 18px;
    }
}

/* Post Service Step 1 Styles */
.post-service-page {
    padding: 40px 0 60px 0;
    min-height: calc(100vh - 160px);
    background-color: #f5f5f3;
}

.post-service-header {
    margin-bottom: 24px;
}

.post-service-title-section {
    margin-bottom: 24px;
}

.post-service-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0 0 8px 0;
}

.post-service-subtitle {
    font-size: 16px;
    color: #706f6c;
    margin: 0;
}

.service-premium-banner {
    background-color: #E9FFF2;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.service-premium-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-premium-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #D8F5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-premium-icon-circle i {
    font-size: 24px;
    color: #21885C;
}

.service-premium-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #21885C;
    margin: 0 0 4px 0;
}

.service-premium-text p {
    font-size: 14px;
    color: #21885C;
    margin: 0;
}

.service-step-progress-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    gap: 8px;
}

.service-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 100px;
}

.service-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f5f5f3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.service-step-item.service-step-active .service-step-icon {
    background-color: #1b1b18;
    color: #ffffff;
}

.service-step-item:not(.service-step-active) .service-step-icon {
    background-color: #f5f5f3;
    color: #706f6c;
}

.service-step-icon i {
    font-size: 20px;
}

.service-step-label {
    font-size: 12px;
    color: #706f6c;
    text-align: center;
    font-weight: 500;
}

.service-step-item.service-step-active .service-step-label {
    color: #1b1b18;
    font-weight: 600;
}

.service-step-connector {
    flex: 1;
    height: 2px;
    background-color: #d4d4d1;
    min-width: 20px;
    margin: 0 4px;
}

.post-service-form-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.post-service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.description-tips-box {
    background-color: #e0f2fe;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.description-tips-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.description-tips-header i {
    font-size: 16px;
    color: #0284c7;
}

.description-tips-header span {
    font-size: 14px;
    font-weight: 600;
    color: #0284c7;
}

.description-tips-list {
    margin: 0;
    padding-left: 24px;
    list-style-type: disc;
}

.description-tips-list li {
    font-size: 14px;
    color: #0284c7;
    margin-bottom: 8px;
    line-height: 1.5;
}

.description-tips-list li:last-child {
    margin-bottom: 0;
}

.pricing-type-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}

.pricing-type-option {
    display: block;
    padding: 16px;
    border: 2px solid #d4d4d1;
    border-radius: 8px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
}

.pricing-type-option:hover {
    border-color: #706f6c;
}

.pricing-type-option input[type="radio"] {
    display: none;
}

.pricing-type-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-type-content i {
    font-size: 24px;
    color: #706f6c;
    flex-shrink: 0;
}

.pricing-type-content div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-type-title {
    font-size: 14px;
    font-weight: 600;
    color: #1b1b18;
    display: block;
}

.pricing-type-desc {
    font-size: 12px;
    color: #706f6c;
    display: block;
}

.pricing-type-option.pricing-type-selected {
    border-color: #1b1b18;
    background-color: #f5f5f3;
}

.pricing-type-option.pricing-type-selected .pricing-type-content i {
    color: #1b1b18;
}

.pricing-strategy-box {
    background-color: #e8f5e9;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.pricing-strategy-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pricing-strategy-header i {
    font-size: 16px;
    color: #2e7d32;
}

.pricing-strategy-header span {
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
}

.pricing-strategy-text {
    font-size: 14px;
    color: #2e7d32;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .post-service-page {
        padding: 24px 0 40px 0;
    }

    .post-service-title {
        font-size: 28px;
    }

    .service-step-progress-card {
        padding: 20px 16px;
        gap: 4px;
    }

    .service-step-item {
        min-width: 80px;
    }

    .service-step-icon {
        width: 40px;
        height: 40px;
    }

    .service-step-icon i {
        font-size: 16px;
    }

    .service-step-label {
        font-size: 11px;
    }

    .post-service-form-card {
        padding: 24px 20px;
    }
}

/* ============================= */
/* Request Accepted Page         */
/* ============================= */

.modal-page-request-accepted {
    padding: 40px 0 64px 0;
    background-color: #f5f5f3;
}

.container--request-accepted {
    max-width: 900px;
    padding-left: 24px;
    padding-right: 24px;
}

.request-accepted-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin: 0 auto 32px auto;
    padding: 0 24px;
}

.request-accepted-hero__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.request-accepted-hero__check {
    font-size: 36px;
    color: #ffffff;
}

.request-accepted-title {
    font-size: 28px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0;
    letter-spacing: -0.02em;
}

.request-accepted-subtitle {
    margin: 0;
    font-size: 15px;
    color: #64748b;
    line-height: 1.4;
}

.request-accepted-main {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.request-summary {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px 24px 22px 24px;
    border: 1px solid #e7e7e4;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.request-side-column > section {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px 22px 18px 22px;
    border: 1px solid #e7e7e4;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
}

.request-summary__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: sticky;
    top: 72px;
    z-index: 100;
    background-color: #ffffff;
    padding: 16px 0;
    margin-left: -24px;
    margin-right: -24px;
    margin-top: -24px;
    padding-left: 24px;
    padding-right: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-page-request-accepted .request-summary {
    padding-top: 24px;
}

.request-summary__title {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0;
}

.request-summary__item {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.request-summary__body {
    padding: 2px 2px 0 2px;
}

.request-summary__item-image {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    object-fit: cover;
}

.request-summary__item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.request-summary__item-name {
    font-size: 16px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0;
}

.request-summary__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.request-summary__badge--accepted {
    background-color: #22c55e;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.request-summary__details {
    margin: 0 0 16px 0;
    padding-top: 4px;
}

.request-summary__detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #3f3f39;
    padding: 6px 0;
}

.request-summary__detail-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #6b7280;
}

.request-summary__detail-value {
    font-weight: 500;
    color: #1b1b18;
}

.request-summary__detail-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background-color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #4b5563;
}

.request-summary__deposit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-radius: 12px;
    background-color: #fff7d6;
    border: 1px solid #fde68a;
    margin-top: 8px;
}

.request-summary__deposit-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.request-summary__deposit-badge {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #facc15;
    color: #854d0e;
    font-size: 12px;
}

.request-summary__deposit-label-text {
    font-size: 13px;
    font-weight: 500;
    color: #854d0e;
}

.request-summary__deposit-amount {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
}

.request-side-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.secure-deposit-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.secure-deposit-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #dbeafe;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.secure-deposit-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0;
}

.secure-deposit-card__desc {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.secure-deposit-card__divider {
    border: none;
    height: 1px;
    background-color: #e5e7eb;
    margin: 0 0 12px 0;
}

.secure-deposit-card__refund {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.secure-deposit-card__refund-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
}

.secure-deposit-card {
    background-color: #ffffff;
    border-color: #e5e7eb;
}

.item-owner-card__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #a3a39f;
}

.item-owner-card__body {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.item-owner-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.item-owner-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #1b1b18;
}

.item-owner-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #575752;
}

.item-owner-card__rating-star {
    color: #fbbf24;
}

.payment-steps-card__title {
    font-size: 15px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0 0 10px 0;
}

.payment-steps-card__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: step;
    font-size: 13px;
    color: #575752;
    line-height: 1.5;
}

.payment-steps-card__list li {
    counter-increment: step;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.payment-steps-card__list li::before {
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background-color: #16a34a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

.payment-steps-card {
    background-color: #ffffff;
    border-color: #e5e7eb;
}

.request-accepted-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.request-accepted-footer__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.request-accepted-footer__help {
    margin: 0;
    font-size: 13px;
    color: #9b9b96;
    text-align: center;
}

.request-accepted-footer__link {
    color: #2563eb;
    font-weight: 500;
    text-decoration: underline;
}

.modal-page-request-accepted .btn.btn-primary,
.modal-page-request-accepted .request-accepted-btn-pay {
    background-color: #0f172a;
    border: 1px solid #0f172a;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.modal-page-request-accepted .request-accepted-btn__icon {
    font-size: 18px;
    opacity: 0.95;
}

.modal-page-request-accepted .btn.btn-outline,
.modal-page-request-accepted .request-accepted-btn-chat {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    color: #1b1b18;
    border-radius: 12px;
    padding: 14px 22px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.modal-page-request-accepted .request-accepted-btn-chat:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

@media (max-width: 992px) {
    .request-accepted-main {
        grid-template-columns: minmax(0, 1fr);
    }

    .request-accepted-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .modal-page-request-accepted {
        padding: 28px 0 40px 0;
    }

    .request-accepted-title {
        font-size: 24px;
    }

    .request-summary,
    .request-side-column > section {
        padding: 18px 16px 18px 16px;
    }
}

/* ============================= */
/* Pay Request Page              */
/* ============================= */

.pay-request-page {
    padding: 40px 0 64px 0;
    background-color: #f9fafb;
}

.return-process-back-link,
.return-verification-back-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}
.return-process-back-link i,
.return-verification-back-link i {
    flex-shrink: 0;
    line-height: 1;
}

/* Back button alignment – icon + text */
.po1-back,
.ps1-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.po1-back i,
.ps1-back i {
    flex-shrink: 0;
    line-height: 1;
}

.pay-request-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1b1b18;
    text-decoration: none;
    margin-bottom: 24px;
}

.pay-request-back-link:hover {
    color: #2563eb;
}

.pay-request-back-link i {
    font-size: 12px;
    flex-shrink: 0;
    line-height: 1;
}

.pay-request-header {
    margin-bottom: 28px;
}

.pay-request-title {
    font-size: 28px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0 0 6px 0;
}

.pay-request-subtitle {
    margin: 0;
    font-size: 14px;
    color: #706f6c;
}

.pay-request-main {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.pay-left-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pay-left-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.pay-wallet-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-radius: 18px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
}

.pay-wallet-main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pay-wallet-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background-color: #dcfce7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 20px;
}

.pay-wallet-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pay-wallet-label {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.pay-wallet-balance {
    font-size: 13px;
    color: #6b7280;
}

.pay-wallet-balance-amount {
    color: #16a34a;
    font-weight: 600;
}

.pay-wallet-indicator {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid #111827;
}

.pay-summary-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px 24px 22px 24px;
    border: 1px solid #e7e7e4;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.pay-summary-card__header {
    margin-bottom: 14px;
}

.pay-summary-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0;
}

.pay-summary-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pay-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pay-summary-item__media {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background-color: #f3f4f6;
    overflow: hidden;
    flex-shrink: 0;
}

.pay-summary-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pay-summary-item__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pay-summary-item__name {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.pay-summary-item__dates {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.pay-summary-rows {
    margin: 4px 0 0 0;
}

.pay-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 6px 0;
}

.pay-summary-row dt {
    color: #6b7280;
    font-weight: 500;
}

.pay-summary-row dd {
    margin: 0;
    color: #111827;
    font-weight: 500;
}

.pay-summary-row__value--green {
    color: #16a34a;
}

.pay-summary-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 4px 0;
}

.pay-summary-row--total dt {
    color: #111827;
    font-weight: 600;
}

.pay-summary-row--total dd {
    font-size: 18px;
    font-weight: 700;
}

.pay-summary-btn {
    width: 100%;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
}

.pay-summary-terms {
    margin: 10px 0 0 0;
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
}

.pay-summary-terms__link {
    color: #111827;
    font-weight: 600;
    text-decoration: underline;
}

.pay-protected-card {
    margin-top: 4px;
    padding: 18px 20px;
    border-radius: 18px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}

.pay-protected-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 10px 0;
}

.pay-protected-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pay-protected-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
}

.pay-protected-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background-color: #dcfce7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 11px;
}

.pay-method-option__label {
    font-size: 14px;
    font-weight: 600;
    color: #1b1b18;
}

.pay-secure-card {
    background-color: #f0f4f7;
    border-radius: 12px;
    padding: 20px 24px;
    border: none;
}

.pay-secure-card__header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pay-secure-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #e0edff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pay-secure-card__lock {
    font-size: 20px;
    color: #007aff;
}

.pay-secure-card__header-text {
    flex: 1;
    min-width: 0;
}

.pay-secure-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #1c1c1e;
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.pay-secure-card__text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #636366;
    line-height: 1.45;
}

.pay-request-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.pay-request-footer__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.pay-request-btn-pay {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pay-request-page .btn.btn-primary {
    background-color: #050505;
    border-color: #050505;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.pay-request-page .btn.btn-outline {
    background-color: #ffffff;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 500;
    text-decoration: none;
    color: #1b1b18;
    border: 2px solid #e5e7eb;
}

.pay-request-page .btn.btn-outline:hover {
    border-color: #d1d5db;
}

.pay-request-footer__help {
    margin: 0;
    font-size: 13px;
    color: #9b9b96;
    text-align: center;
}

.pay-request-footer__link {
    color: #2563eb;
    font-weight: 500;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .pay-request-main {
        grid-template-columns: minmax(0, 1fr);
    }

    .pay-summary-card {
        margin-top: 8px;
    }
}

@media (max-width: 768px) {
    .pay-request-page {
        padding: 28px 0 40px 0;
    }

    .pay-summary-card,
    .pay-secure-card,
    .pay-protected-card,
    .pay-wallet-card {
        padding: 18px 16px 18px 16px;
    }
}

/* ============================= */
/* Deposit Success (Request Details) */
/* ============================= */

.deposit-success-page {
    padding: 32px 0 48px 0;
    background-color: #f5f5f3;
}

/* Prevent any page section or card from sticking – only main header sticks */
.deposit-success-page .deposit-success-header-bar,
.deposit-success-page .deposit-card,
.deposit-success-page .deposit-status-card,
.deposit-success-page .deposit-card-header,
.deposit-success-page .deposit-request-info-header {
    position: static;
}

.deposit-success-page .container {
    padding-left: 32px;
    padding-right: 32px;
}

.deposit-success-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1b1b18;
    text-decoration: none;
    margin-bottom: 20px;
}

.deposit-success-back-link:hover {
    color: #2563eb;
}

.deposit-success-back-link i {
    font-size: 12px;
    flex-shrink: 0;
    line-height: 1;
}

/* Request Details page header bar – scrolls with page */
.deposit-success-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    margin: 0 -32px 28px -32px;
    padding-left: 32px;
    padding-right: 32px;
    background: #ffffff;
    border-bottom: 1px solid #e3e3e0;
}

.deposit-success-header-bar__text {
    flex: 1;
    min-width: 0;
}

.deposit-success-title {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 4px 0;
}

.deposit-success-subtitle {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.deposit-success-header-bar__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background-color: #3366FF;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.deposit-success-header-bar__btn:hover {
    background-color: #2952cc;
    color: #ffffff;
}

.deposit-success-header-bar__btn i {
    font-size: 16px;
}

.deposit-success-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.deposit-success-left,
.deposit-success-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.deposit-success-right .deposit-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Deposit Paid card – pixel-matched to design */
.deposit-status-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.deposit-status-head {
    background-color: #E0E8F9;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.deposit-status-badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #4C74E0;
    text-transform: uppercase;
}

.deposit-status-ref {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #7F9AE0;
    text-transform: uppercase;
}

.deposit-status-body {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
}

.deposit-status-item__media {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0ee;
}

.deposit-status-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deposit-status-item__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-width: 0;
}

.deposit-status-item__category {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #6B7280;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.deposit-status-item__name {
    font-size: 24px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 6px 0;
    line-height: 1.25;
}

.deposit-status-item__desc {
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

.deposit-status-item__price {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
    margin: 16px 0 0 0;
}

.deposit-status-item__price-unit {
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
}

.deposit-success-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 16px;
    background-color: #dcfce7;
    border: 1px solid #86efac;
}

.deposit-success-banner__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #16a34a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.deposit-success-banner__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.deposit-success-banner__text strong {
    font-size: 15px;
    color: #166534;
}

.deposit-success-banner__text span {
    font-size: 13px;
    color: #15803d;
    line-height: 1.4;
}

.deposit-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e7e7e4;
}

.deposit-card__title {
    font-size: 17px;
    font-weight: 600;
    color: #1b1b18;
    margin: 0 0 14px 0;
}

.deposit-card__body {
    margin: 0;
}

/* Request Information card: two columns + nested cost card */
.deposit-card-request-info {
    padding: 24px 24px 22px 24px;
}

.deposit-request-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.deposit-request-info-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background-color: #e9e5ff;
    color: #6a6c7d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.deposit-request-info-title {
    font-size: 17px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.deposit-request-info-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.deposit-request-info-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.deposit-request-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.deposit-request-block-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #a0aec0;
    text-transform: uppercase;
}

.deposit-request-block-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.deposit-request-block-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #6a6c7d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.deposit-request-block-primary {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
}

.deposit-request-block-secondary {
    font-size: 12px;
    color: #a0aec0;
    margin-left: 30px;
    line-height: 1.4;
}

/* Nested Cost Breakdown card */
.deposit-cost-card {
    background-color: #f8f9fb;
    border-radius: 12px;
    padding: 18px 20px;
    border: none;
    box-shadow: none;
}

.deposit-cost-card-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #a0aec0;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.deposit-cost-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deposit-cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 0;
}

.deposit-cost-label {
    color: #2d3748;
}

.deposit-cost-amount {
    color: #2d3748;
    font-weight: 500;
}

.deposit-cost-separator {
    height: 1px;
    background-color: #e2e8f0;
    margin: 14px 0 14px 0;
}

.deposit-cost-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 16px 0;
}

.deposit-cost-total-label {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
}

.deposit-cost-total-amount {
    font-size: 15px;
    font-weight: 700;
    color: #2d3748;
}

.deposit-paid-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.deposit-paid-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deposit-paid-status {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #48bb78;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.deposit-paid-check {
    font-size: 12px;
    color: #48bb78;
}

.deposit-paid-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    background-color: #edf7ed;
    color: #48bb78;
}

.deposit-paid-date {
    font-size: 11px;
    color: #a0aec0;
    line-height: 1.4;
}

/* Delivery Address card – pixel-matched to design */
.deposit-card-address {
    padding: 24px 24px 22px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.deposit-address-header__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #FEE7EF;
    color: #EE5089;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.deposit-address-header__title {
    font-size: 17px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.deposit-address-layout {
    display: grid;
    grid-template-columns: 1fr minmax(0, 45%);
    gap: 24px;
    align-items: start;
}

.deposit-address-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.deposit-address-street {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    line-height: 1.4;
    margin: 0;
}

.deposit-address-city,
.deposit-address-country {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    margin: 0;
}

.deposit-address-contact-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #AAAAAA;
    text-transform: uppercase;
    margin: 16px 0 4px 0;
}

.deposit-address-contact-value {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin: 0;
}

.deposit-map-preview {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e8e8e6;
}

.deposit-map-preview__image {
    width: 100%;
    aspect-ratio: 400 / 220;
    min-height: 160px;
}

.deposit-map-preview__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4d4d1 0%, #e8e8e6 50%, #d1d1ce 100%);
    filter: grayscale(1);
}

.deposit-map-preview__pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #EE5089;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(238, 80, 137, 0.4);
}

.deposit-map-preview__label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 6px 10px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
}

.deposit-address-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.deposit-address-contact {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #6b7280;
    margin: 0 0 12px 0;
}

.deposit-notes-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

/* Right column: Open Chat button (dark indigo, rounded, shadow) */
.deposit-btn-chat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background-color: #312e81;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(49, 46, 129, 0.25);
}

.deposit-btn-chat:hover {
    background-color: #3730a3;
    color: #ffffff;
}

.deposit-btn-chat i {
    font-size: 18px;
    flex-shrink: 0;
}

/* Card header with icon (Your Details / Owner Details) */
.deposit-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.deposit-card-header__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.deposit-card-header__icon--blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.deposit-card-header__icon--orange {
    background-color: #ffedd5;
    color: #ea580c;
}

.deposit-card-header__title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

/* Your Details card */
.deposit-card-your-details .deposit-card__body {
    padding-top: 0;
}

.deposit-details-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.deposit-detail-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.deposit-detail-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #9ca3af;
    text-transform: uppercase;
}

.deposit-detail-value {
    font-size: 15px;
    font-weight: 700;
    color: #374151;
}

/* Owner Details: profile bar (rounded light gray) */
.deposit-card-owner .deposit-card__body {
    padding-top: 0;
}

.deposit-owner-profile-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 12px;
    background-color: #f3f4f6;
}

.deposit-owner-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.deposit-owner-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deposit-owner-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #22c55e;
    border: 2px solid #ffffff;
}

.deposit-owner-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.deposit-owner-name {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}

.deposit-owner-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
}

.deposit-owner-rating i {
    color: #fbbf24;
}

.deposit-owner-rating i.fa-regular {
    color: #d1d5db;
}

.deposit-owner-rating-num {
    font-size: 13px;
    font-weight: 400;
    color: #9ca3af;
    margin-left: 4px;
}

.deposit-owner-chat {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background-color: #fecaca;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s;
}

.deposit-owner-chat:hover {
    background-color: #fca5a5;
}

.deposit-owner-chat i {
    font-size: 16px;
}

/* Owner contact/location pills */
.deposit-owner-field--pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background-color: #f3f4f6;
    margin-bottom: 8px;
}

.deposit-owner-field--pill:last-child {
    margin-bottom: 0;
}

.deposit-owner-field--pill i {
    color: #9ca3af;
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.deposit-owner-field-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #9ca3af;
    text-transform: uppercase;
    flex-shrink: 0;
}

.deposit-owner-field-value {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    margin-left: auto;
}

/* Need help card: blue–purple gradient */
.deposit-help-card {
    background: linear-gradient(180deg, #4338ca 0%, #7c3aed 100%);
    border-radius: 16px;
    padding: 20px 22px;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(67, 56, 202, 0.25);
}

.deposit-help-card__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.deposit-help-card__text {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 16px 0;
    opacity: 0.95;
}

.deposit-help-card__btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    background-color: #60a5fa;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    text-align: center;
    width: 100%;
    transition: background-color 0.2s;
}

.deposit-help-card__btn:hover {
    background-color: #3b82f6;
    color: #ffffff;
}

/* Cancel button: white, red text + X */
.deposit-cancel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    background-color: #ffffff;
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s;
}

.deposit-cancel-btn:hover {
    background-color: #fef2f2;
}

@media (max-width: 992px) {
    .deposit-success-layout {
        grid-template-columns: 1fr;
    }

    .deposit-request-info-columns {
        grid-template-columns: 1fr;
    }

    .deposit-address-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .deposit-success-page {
        padding: 20px 0 40px 0;
    }

    .deposit-success-page .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .deposit-success-header-bar {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .deposit-success-title {
        font-size: 20px;
    }

    .deposit-card,
    .deposit-status-card {
        padding: 16px 18px;
    }

    .deposit-card-request-info {
        padding: 18px 16px;
    }

    .deposit-request-info-header {
        margin-bottom: 18px;
    }

    .deposit-request-info-columns {
        gap: 18px;
    }

    .deposit-cost-card {
        padding: 14px 16px;
    }
}
