/* =========================================
   Airbnb Clone - Main Stylesheet
   ========================================= */

/* CSS Variables for Solo Traveler Features */
:root {
    --airbnb-pink: #ff385c;
    --airbnb-black: #222222;
    --airbnb-gray-dark: #717171;
    --airbnb-gray-medium: #dddddd;
    --airbnb-gray-light: #f7f7f7;
}

/* =========================================
   Reset and Base Styles
   ========================================= */

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

body {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: #222222;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* =========================================
   Layout Components
   ========================================= */

.main-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* =========================================
   Header
   ========================================= */

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 16px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #ebebeb;
    position: sticky;
    top: 0;
    z-index: 2000;
}

.logo {
    width: 102px;
    height: 32px;
    cursor: pointer;
}

/* =========================================
   Search Container
   ========================================= */

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 40px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08),
        0px 4px 12px rgba(0, 0, 0, 0.05);
    height: 48px;
    transition: box-shadow 0.2s ease, opacity 0.1s ease, visibility 0.1s;
}

.search-container.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.search-container:hover {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
}

.search-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 16px;
    flex: 1;
    position: relative;
}

/* .search-section:hover {
    background-color: #ebebeb;
    border-radius: 32px;
} */

.search-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
}

.search-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: #222222;
}

.search-divider {
    width: 1px;
    height: 24px;
    background-color: #dddddd;
}

.search-button {
    width: 32px;
    height: 32px;
    background: var(--airbnb-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 7px;
}

.search-button img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

/* =========================================
   Solo Toggle
   ========================================= */

.solo-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 22px;
    border: 1px solid transparent;
    transition: all 0.2s;
    height: 40px;
}

.solo-toggle svg {
    width: 16px;
    height: auto;
    display: none;
}

.solo-toggle:hover {
    background: var(--airbnb-gray-light);
}

.solo-toggle.active {
    background-color: #fff0f2;
    border-color: var(--airbnb-pink);
    color: var(--airbnb-pink);
}

.solo-toggle.active svg path {
    fill: var(--airbnb-pink);
}

.toggle-switch {
    width: 34px;
    height: 20px;
    background: var(--airbnb-gray-dark);
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
    flex-shrink: 0;
}

.toggle-switch::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.solo-toggle.active .toggle-switch {
    background: var(--airbnb-pink);
}

.solo-toggle.active .toggle-switch::after {
    left: 16px;
}

/* =========================================
   Solo Modal/Screen Styles
   ========================================= */

.solo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.solo-modal.active {
    display: block;
}

.solo-screen {
    display: none;
    background: white;
    min-height: 100vh;
    animation: fadeIn 0.4s ease;
}

.solo-screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solo-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 40px;
}

/* =========================================
   Search Screen Styles
   ========================================= */

.solo-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 24px;
}

.close-modal {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #dddddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-modal:hover {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
}

.filters-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 24px;
    scrollbar-width: none;
}

.filters-row::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    padding: 10px 16px;
    border: 1px solid var(--airbnb-gray-medium);
    border-radius: 24px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.2s;
    font-weight: 500;
}

.filter-chip:hover {
    border-color: var(--airbnb-black);
}

.filter-chip.active {
    border-color: var(--airbnb-black);
    background: var(--airbnb-black);
    color: white;
}

/* =========================================
   Listings Grid
   ========================================= */

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.listing-card {
    cursor: pointer;
    transition: transform 0.2s;
}

.listing-card:hover {
    transform: translateY(-4px);
}

.card-img {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--airbnb-gray-light);
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.wishlist-btn svg {
    width: 18px;
    height: 18px;
}

/* Base state: Hidden */
.solo-badge-sm,
.safety-score-sm,
.solo-badge-main,
.safety-score-main {
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    display: none;
}

/* Active state: Visible when body has .solo-mode AND card matches solo friendly */
body.solo-mode .property-card.is-solo-friendly .solo-badge-sm,
body.solo-mode .property-card.is-solo-friendly .safety-score-sm,
body.solo-mode .property-card.is-solo-friendly .solo-badge-main,
body.solo-mode .property-card.is-solo-friendly .safety-score-main,
body.solo-mode .property-card[data-solo-friendly="true"] .solo-badge-main,
body.solo-mode .property-card[data-solo-friendly="true"] .safety-score-main {
    display: flex;
    pointer-events: auto;
}

.solo-badge-sm {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    color: #222222;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
}

.solo-badge-sm svg {
    width: 14px;
    height: 14px;
    color: var(--airbnb-pink);
}

.safety-score-sm {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(46, 125, 50, 0.95);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.safety-score-sm svg {
    width: 16px;
    height: 16px;
}

.solo-badge-main {
    background: #fff0f2;
    border: 1px solid var(--airbnb-pink);
    color: var(--airbnb-pink);
    padding: 4px 8px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 4px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
    z-index: 2;
    line-height: normal;
}

.solo-badge-main svg {
    width: 14px;
    height: 14px;
    fill: var(--airbnb-pink);
}

.safety-score-main {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #2e7d32;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
    gap: 4px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.safety-score-main svg {
    position: relative;
    top: 2px;
}

/* =========================================
   Property Cards
   ========================================= */

.property-card[data-solo-friendly="false"] {
    transition: opacity 0.3s, transform 0.3s;
}

.property-card {
    display: flex;
    transition: opacity 0.4s ease, transform 0.4s ease, max-width 0.4s ease, margin 0.4s ease, padding 0.4s ease;
    opacity: 1;
    transform: scale(1);
    overflow: hidden;
}

.property-card.hidden {
    display: none !important;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 4px;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.card-subtitle {
    font-size: 14px;
    color: var(--airbnb-gray-dark);
    margin-bottom: 8px;
}

.card-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--airbnb-black);
}

.card-price span {
    font-weight: 400;
    color: var(--airbnb-gray-dark);
}

/* =========================================
   Details Layout
   ========================================= */

.details-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    margin-top: 24px;
    max-width: 1760px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 48px;
    height: 480px;
    position: relative;
}

.gallery-main-image {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s;
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s;
    height: calc(480px/2);
}

.gallery-main-image:hover,
.gallery-thumb:hover {
    opacity: 0.9;
}

.show-all-photos {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: white;
    color: var(--airbnb-black);
    padding: 6px 14px;
    border: 1px solid var(--airbnb-black);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s, background-color 0.1s;
    z-index: 10;
}

.show-all-photos:hover {
    background-color: #f7f7f7;
    transform: scale(1.02);
}

.detail-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.detail-header-section {
    padding-bottom: 24px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 32px;
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.detail-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
    color: #222222;
    flex: 1;
}

.detail-subtitle {
    font-size: 16px;
    color: #222222;
    text-decoration: underline;
    margin-bottom: 16px;
    cursor: pointer;
}

.detail-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

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

.detail-meta-item svg {
    width: 16px;
    height: 16px;
}

/* =========================================
   Host Section
   ========================================= */

.host-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
    border-bottom: 1px solid #ebebeb;
    /* margin-bottom: 32px; */
}

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

.host-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.host-info p {
    font-size: 16px;
    color: #717171;
    margin: 0;
}

/* =========================================
   Amenities
   ========================================= */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 32px 0;
    /* border-bottom: 1px solid #ebebeb;
    margin-bottom: 32px; */
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
}

.amenity-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* =========================================
   Description Section
   ========================================= */

.description-section {
    padding: 32px 0;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 32px;
}

.description-section p {
    font-size: 16px;
    line-height: 24px;
    color: #222222;
    white-space: pre-line;
}

.show-more-btn {
    color: #222222;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 8px;
    display: inline-block;
}

/* =========================================
   Where You'll Sleep
   ========================================= */

.where-youll-sleep {
    padding: 32px 0;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 32px;
}

.sleep-room {
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.sleep-room h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sleep-room p {
    font-size: 14px;
    color: #717171;
    margin: 0;
}

/* =========================================
   Solo Overview & Transitions
   ========================================= */

.solo-only {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        margin 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    transform: translateY(20px) scale(0.98);
}

body.solo-mode .solo-only {
    opacity: 1;
    max-height: 2000px;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    margin: revert;
    border-bottom: 1px solid #ebebeb;
}

.solo-overview {
    background: #fff0f2;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--airbnb-pink);
}

body.solo-mode .solo-overview {
    margin-bottom: 24px;
    padding: 24px;
    border: 1px solid var(--airbnb-pink);
}

.solo-overview h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--airbnb-pink);
}

.solo-features {
    display: grid;
    gap: 16px;
    overflow: hidden;
}

.solo-feat-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.solo-feat-item p {
    font-size: 14px;
    color: var(--airbnb-gray-dark);
    margin: 0;
}

/* Safety Panel */
.safety-panel {
    border-radius: 12px;
    border: 1px solid var(--airbnb-gray-medium);
    padding: 24px;
    margin-bottom: 32px;
    background: white;
}

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

.score-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2e7d32;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

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

.safety-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Booking Card Solo Alerts */
.booking-card {
    border: 1px solid var(--airbnb-gray-medium);
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 80px;
}

.solo-price-alert {
    background: #e6f4ea;
    color: #1e7e34;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 12px;
    border: 1px solid #1e7e34;
    margin-top: 12px;
}

body.solo-mode .solo-price-alert {
    padding: 12px;
    margin-top: 16px;
}

/* =========================================
   Reviews Section
   ========================================= */

.reviews-section {
    padding: 32px 0;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 32px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--airbnb-gray-medium);
}

.review-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--airbnb-gray-medium);
}

.review-tab {
    padding: 12px 0;
    cursor: pointer;
    font-size: 16px;
    color: var(--airbnb-gray-dark);
    position: relative;
    transition: color 0.2s;
}

.review-tab:hover {
    color: var(--airbnb-black);
}

.review-tab.active {
    color: var(--airbnb-black);
    font-weight: 600;
}

.review-tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--airbnb-black);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.review-card {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--airbnb-gray-medium);
}

.reviewer-info {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-info p {
    display: flex;
    gap: 12px;
}

.reviewer-info span {
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

.reviewer-info span svg {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 1px solid var(--airbnb-pink);
    padding: 3px;
}

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

.highlight-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.tag {
    padding: 6px 12px;
    background: var(--airbnb-gray-light);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

/* =========================================
   Screen Tabs
   ========================================= */

.screen-tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 24px 0;
    border-bottom: 1px solid var(--airbnb-gray-medium);
    margin-bottom: 32px;
}

.screen-tab {
    padding: 8px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--airbnb-gray-dark);
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.screen-tab:hover {
    color: var(--airbnb-black);
}

.screen-tab.active {
    color: var(--airbnb-black);
    border-bottom-color: var(--airbnb-black);
}

/* =========================================
   User Menu
   ========================================= */

.user-menu {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.become-host {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    border-radius: 22px;
    transition: background-color 0.2s ease;
}

.become-host:hover {
    background-color: #f7f7f7;
}

.user-buttons {
    display: flex;
    gap: 0;
    align-items: center;
    border: 1px solid #dddddd;
    border-radius: 21px;
    padding: 5px 5px 5px 12px;
    transition: box-shadow 0.2s ease;
}

.user-buttons:hover {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
}

.icon-button {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-button img {
    width: 16px;
    height: 16px;
}

.icon-button:last-child {
    width: 32px;
    height: 32px;
    background-color: #717171;
    margin-left: 12px;
}

.icon-button:last-child img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* =========================================
   Section Layouts
   ========================================= */

.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
    padding: 0 40px;
    transition: margin 0.4s ease, padding 0.4s ease, opacity 0.4s ease, max-height 0.4s ease;
}

.section.section-hidden {
    display: none !important;
}

.section-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1760px;
}

.section-title-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    color: #222222;
}

.info-button {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    padding: 0;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.info-button img {
    width: 16px;
    height: 16px;
}

.section-controls {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-button {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.nav-button:hover {
    transform: scale(1.04);
    border-color: #222222;
}

.nav-button img {
    width: 12px;
    height: 12px;
}

.nav-button.active {
    background-color: #ffffff;
    border-color: #222222;
}

/* =========================================
   Property Slider
   ========================================= */

.property-slider {
    width: 100%;
    max-width: 1760px;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.property-slider::-webkit-scrollbar {
    display: none;
}

.property-card {
    flex: 0 0 231px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    margin-right: 24px;
    transition: transform 0.2s ease, opacity 0.4s ease, max-width 0.4s ease, margin 0.4s ease, padding 0.4s ease;
}

.property-card:hover {
    transform: translateY(-4px);
}

.property-card:hover .property-image {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.property-image-container {
    position: relative;
    width: 231px;
    height: 217px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f7f7f7;
}

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

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.guest-favourite {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: #222222;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Hide Guest Favourite when Solo Friendly is active */
body.solo-mode .property-card.is-solo-friendly .guest-favourite,
body.solo-mode .property-card[data-solo-friendly="true"] .guest-favourite {
    display: none;
}

.heart-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.32));
    margin: 0 0 0 auto;
}

.heart-icon:hover {
    transform: scale(1.1);
}

.property-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.property-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    color: #222222;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.property-info {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.property-price {
    display: flex;
    gap: 4px;
    align-items: baseline;
}

.price-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #717171;
}

.price-bold {
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    color: #222222;
}

.dot-separator {
    font-size: 8px;
    font-weight: 400;
    color: #717171;
    padding: 0 4px;
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-icon {
    width: 12px;
    height: 12px;
}

.rating-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #222222;
}

/* =========================================
   Featured Section
   ========================================= */

.featured-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    padding: 0 40px;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1760px;
}

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

.featured-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #717171;
}

/* =========================================
   Inspiration Section
   ========================================= */

.inspiration-section {
    width: 100%;
    background-color: #f7f7f7;
    padding: 64px 40px 48px;
    margin-top: 64px;
}

.inspiration-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    color: #222222;
    margin-bottom: 24px;
}

.tab-container {
    width: 100%;
    margin-bottom: 48px;
}

.tab-list {
    display: flex;
    align-items: center;
    gap: 32px;
    border-bottom: 1px solid #dddddd;
    overflow-x: auto;
}

.tab-item {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 400;
    color: #717171;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.tab-item:hover {
    color: #222222;
}

.tab-item.active {
    color: #222222;
    font-weight: 600;
}

.tab-item.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #222222;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    max-width: 1760px;
}

.destinations-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px 24px;
}

.destination-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.destination-name {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}

.destination-type {
    font-size: 14px;
    font-weight: 400;
    color: #717171;
}

.show-more {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    cursor: pointer;
    text-decoration: underline;
}

.show-more:hover {
    color: #000000;
}

.arrow-icon {
    width: 16px;
    height: 16px;
}

/* =========================================
   Footer
   ========================================= */

.footer {
    width: 100%;
    background-color: #f7f7f7;
    padding: 48px 40px;
    border-top: 1px solid #dddddd;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    max-width: 1760px;
    margin: 0 auto 48px;
}

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

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #dddddd;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 14px;
    color: #222222;
}

.footer-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-nav-link {
    font-size: 14px;
    color: #222222;
    text-decoration: none;
}

.footer-nav-link:hover {
    text-decoration: underline;
}

.footer-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.language-selector,
.currency-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    cursor: pointer;
}

.language-selector:hover,
.currency-selector:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

/* =========================================
   Back Navigation
   ========================================= */

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--airbnb-gray-medium);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--airbnb-black);
    transition: all 0.2s;
    margin-bottom: 24px;
}

.back-button:hover {
    border-color: var(--airbnb-black);
    background: var(--airbnb-gray-light);
}

/* =========================================
   Responsive Media Queries
   ========================================= */

@media (min-width: 640px) {
    .header {
        padding: 22px 40px;
    }

    .destinations-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .destinations-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .destinations-row {
        grid-template-columns: repeat(5, 1fr);
    }

    .property-card {
        flex: 0 0 190px;
    }

    .property-image-container {
        width: 190px;
        height: 179px;
    }

    .details-layout {
        grid-template-columns: 1fr 380px;
        gap: 80px;
        padding: 0 24px;
    }
}

@media (max-width: 1024px) {
    .details-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
    }

    .booking-card {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }

    .image-gallery {
        height: 400px;
    }
}

@media (min-width: 1280px) {
    .destinations-row {
        grid-template-columns: repeat(6, 1fr);
    }

    .property-card {
        flex: 0 0 215px;
    }

    .property-image-container {
        width: 215px;
        height: 202px;
    }
}

@media (min-width: 1440px) {
    .property-card {
        flex: 0 0 231px;
    }

    .property-image-container {
        width: 231px;
        height: 217px;
    }
}

@media (max-width: 950px) {
    .search-container {
        max-width: 300px;
        height: 48px;
        border-radius: 24px;
    }

    .search-section {
        padding: 10px 16px;
    }

    .search-divider {
        display: none;
    }

    .search-section:not(:first-child) {
        display: none;
    }

    .search-button {
        width: 32px;
        height: 32px;
        margin: 8px;
    }

    .search-button img {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 743px) {
    .become-host {
        display: none;
    }

    .section {
        padding: 0 24px;
    }

    .featured-section {
        padding: 0 24px;
    }

    .inspiration-section {
        padding: 48px 24px 32px;
    }

    .footer {
        padding: 48px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

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

    .solo-container {
        padding: 16px 24px;
    }

    .details-layout {
        padding: 0 16px;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        height: 300px;
    }

    .gallery-main-image {
        grid-row: 1;
    }

    .gallery-thumb {
        display: none;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .detail-title {
        font-size: 22px;
    }
}

@media (max-width: 639px) {
    .property-card {
        flex: 0 0 280px;
    }

    .property-image-container {
        width: 280px;
        height: 264px;
    }
}

/* =========================================
   Coachmark Onboarding Styles
   ========================================= */

/* Overlay backdrop */
.coachmark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.coachmark-overlay.active {
    opacity: 0;
    visibility: visible;
}

/* Spotlight cutout for highlighted element */
.coachmark-spotlight {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Tooltip container */
.coachmark-tooltip {
    position: absolute;
    z-index: 10000;
    background: white;
    border-radius: 16px;
    padding: 24px;
    max-width: 340px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

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

/* Arrow pointer */
.coachmark-tooltip::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    z-index: -1;
}

.coachmark-tooltip.arrow-top::before {
    top: -8px;
    left: var(--arrow-offset, 50%);
    transform: translateX(-50%) rotate(45deg);
}

.coachmark-tooltip.arrow-bottom::before {
    bottom: -8px;
    left: var(--arrow-offset, 50%);
    transform: translateX(-50%) rotate(45deg);
}

.coachmark-tooltip.arrow-left::before {
    left: -8px;
    top: var(--arrow-offset, 50%);
    transform: translateY(-50%) rotate(45deg);
}

.coachmark-tooltip.arrow-right::before {
    right: -8px;
    top: var(--arrow-offset, 50%);
    transform: translateY(-50%) rotate(45deg);
}

/* Tooltip content */
.coachmark-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff385c 0%, #d70466 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.coachmark-title {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 8px;
    line-height: 1.3;
}

.coachmark-body {
    font-size: 15px;
    line-height: 1.6;
    color: #717171;
    margin-bottom: 20px;
}

/* Step indicator dots */
.coachmark-steps {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.coachmark-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dddddd;
    transition: background 0.3s ease, transform 0.3s ease;
}

.coachmark-step-dot.active {
    background: var(--airbnb-pink);
    transform: scale(1.25);
}

.coachmark-step-dot.completed {
    background: #222222;
}

/* Action buttons */
.coachmark-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.coachmark-btn-primary {
    background: linear-gradient(to right, #E61E4D 0%, #E31C5F 50%, #D70466 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coachmark-btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.4);
}

.coachmark-btn-secondary {
    background: transparent;
    color: #717171;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.coachmark-btn-secondary:hover {
    color: #222222;
    text-decoration: underline;
}

/* Pulsing ring animation around highlighted element */
.coachmark-pulse-ring {
    position: absolute;
    border: 2px solid var(--airbnb-pink);
    border-radius: inherit;
    z-index: 9999;
    pointer-events: none;
    animation: coachmarkPulse 2s ease-out infinite;
}

@keyframes coachmarkPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Solo icon for coachmark badge */
.coachmark-solo-icon {
    width: 12px;
    height: 12px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .coachmark-tooltip {
        max-width: 300px;
        padding: 20px;
        margin: 16px;
    }

    .coachmark-title {
        font-size: 18px;
    }

    .coachmark-body {
        font-size: 14px;
    }

    .coachmark-btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* =========================================
   Expanded Search Overlay
   ========================================= */

.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.search-overlay.active {
    display: block;
}

.expanded-search-container {
    background: white;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    animation: slideDown 0.2s ease-out;
}

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

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.expanded-search-bar {
    display: flex;
    background: #ebebeb;
    border-radius: 32px;
    border: 1px solid #dddddd;
    position: relative;
    margin-top: 16px;
    width: 850px;
}

.expanded-search-bar.active-bg {
    background: #ebebeb;
}

.search-field {
    flex: 1;
    padding: 14px 24px;
    border-radius: 32px;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}

.search-field:hover {
    background: #dddddd;
}

.search-field.active {
    background: white;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.field-label {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 2px;
    display: block;
}

.field-input {
    font-size: 14px;
    color: #717171;
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
}

.field-separator {
    width: 1px;
    background: #dddddd;
    margin: 8px 0;
}

.search-submit-container {
    padding: 8px;
    display: flex;
    align-items: center;
}

.large-search-btn {
    background: #ff385c;
    color: white;
    border-radius: 24px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s;
}

.large-search-btn:hover {
    background: #d90b3e;
}

.large-search-btn img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* =========================================
   Search Results Page Styles
   ========================================= */

.main-content {
    display: flex;
    height: calc(100vh - 80px);
    /* 80px is header height */
    flex-direction: column;
}

.filter-section {
    height: 72px;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: white;
    gap: 12px;
    z-index: 100;
}

.filters-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 12px 2px;
    flex-grow: 1;
}

.filters-scroll::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    border: 1px solid #dddddd;
    border-radius: 32px;
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: #222222;
}

.filter-btn.active {
    border-color: #222222;
    box-shadow: 0 0 0 1px #222222;
}

.solo-only-filter {
    opacity: 0;
    max-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    border: none;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.solo-mode .solo-only-filter {
    opacity: 1;
    max-width: 250px;
    margin: 0 6px;
    padding: 8px 16px;
    pointer-events: auto;
    border: 1px solid #dddddd;
}

.split-view {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.results-column {
    flex: 0 0 60%;
    overflow-y: auto;
    padding: 24px 24px;
    scrollbar-width: none;
}

.results-column::-webkit-scrollbar {
    display: none;
}

.results-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.map-area-count {
    font-size: 16px;
    font-weight: 600;
}

.price-all-fees {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.pink-tag {
    color: var(--airbnb-pink);
}

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

.listing-grid-search .property-card {
    flex: none;
    width: 100%;
}

.listing-grid-search .property-card.hidden {
    display: none !important;
}

.listing-grid-search .property-image-container {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

.map-column {
    flex: 0 0 40%;
    background: #f1f1f1;
    position: relative;
    border-left: 1px solid #ebebeb;
}

.map-marker {
    position: absolute;
    background: white;
    padding: 6px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #ddd;
    z-index: 5;
}

.map-marker:hover {
    transform: scale(1.05);
    z-index: 10;
    border-color: #222;
}

/* =========================================
   Booking Page Styles
   ========================================= */

.booking-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
}

.booking-content h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.booking-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.booking-wrapper .booking-section {
    padding: 20px 0;
    border-bottom: 1px solid #ebebeb;
}

/* Duplicated from elsewhere but ensuring prominence */
.booking-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.booking-section .section-title {
    font-size: 22px;
    font-weight: 600;
}

.edit-btn {
    font-weight: 600;
    text-decoration: underline;
    font-size: 16px;
    background: none;
    border: none;
    cursor: pointer;
}

.emergency-contact-box {
    background: #fff0f2;
    border: 1px solid var(--airbnb-pink);
    border-radius: 12px;
    padding: 24px;
    margin-top: 16px;
}

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

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

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #b0b0b0;
    border-radius: 8px;
    font-size: 16px;
}

.arrival-guide-preview {
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    margin-top: 16px;
}

.guide-icon {
    width: 80px;
    height: 80px;
    background: #f7f7f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-text h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.guide-text p {
    font-size: 14px;
    color: #717171;
    line-height: 20px;
}

.checkout-summary {
    position: sticky;
    top: 24px;
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.summary-header {
    display: flex;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 24px;
}

.summary-img {
    width: 104px;
    height: 104px;
    border-radius: 8px;
    object-fit: cover;
}

.price-row {
    display: flex;
    justify-content: space-between;
    color: #222;
    padding: 18px 0;
    align-items: center;
    border-bottom: 1px solid #ebebeb;

}

.total-row {
    padding-top: 16px;
    border: 0;
    border-top: 1px solid #ebebeb;
    font-weight: 600;
    font-size: 18px;
}

.confirm-btn {
    background: linear-gradient(to right, #E61E4D 0%, #E31C5F 50%, #D70466 100%);
    color: white;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 24px;
    border: none;
    cursor: pointer;
}

.success-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.success-overlay.active {
    display: flex;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #2e7d32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 40px;
}