/* Tour Info Bar Styles - Inline Version */
.tour-info-bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 15px;
    margin: 5px 0 10px 0;
    padding: 8px 0;
    background: transparent;
    list-style: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.tour-info-bar::-webkit-scrollbar {
    height: 4px;
}

.tour-info-bar::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.tour-info-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 1.2rem;
    color: #555;
    white-space: nowrap;
    flex-shrink: 0;
}

.tour-info-item i {
    font-size: 1rem;
    color: #666;
    margin-right: 0;
}

/* Rating Stars */
.rating-stars {
    display: inline-flex;
    gap: 1px;
}

.rating-stars i {
    font-size: 1.2rem;
    color: #ffc107;
}

.rating-stars i.voted {
    color: #ffc107;
}

.rating-value {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-left: 4px;
}

.review-count {
    color: #777;
    font-size: 0.7rem;
    border: 1px solid var(--secondary-color);
    padding: 0 5px;
    border-radius: 3px;
    font-weight: bolder;
    margin-left: 5px;

}

/* Price */
.tour-info-price {
    font-weight: 600;
    padding: 2px 17px;
    background: var(--deep-green);
    color: white;
    border-radius: 5px;
}

.tour-info-price i {
    color: white;
    font-size: 0.9rem;
    margin-right: 1px;
}

.price-label {
    font-size: 0.8rem;
    font-weight: 400;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: 2px;
}

/* Days of the week */
.tour-info-days ul {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    padding: 0;
    display: inline;
}

.tour-info-days i {
    margin-right: 3px;
}

.tour-info-days ul li {
    display: inline;
    padding: 1px 4px;
    border-radius: 3px;
    border: 1px solid var(--secondary-color);
}

/* Duration */
.tour-info-duration ul {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.tour-info-duration i {
    margin-right: 3px;
}

.tour-info-duration ul li {
    display: inline;
    padding: 1px 4px;
    border-radius: 3px;
    border: 1px solid var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tour-info-bar {
        flex-wrap: wrap;
        gap: 8px 6px;
        padding: 8px 0;
        margin: 8px 0 12px 0;
        overflow-x: visible;
        overflow-y: visible;
    }

    .tour-info-item {
        display: flex;
        font-size: 0.9rem;
        gap: 4px;
        flex-shrink: 1;
        white-space: normal;
    }

    .tour-info-item i {
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .rating-stars i {
        font-size: 0.85rem;
    }

    .rating-value {
        font-size: 0.85rem;
    }

    .review-count {
        font-size: 0.72rem;
    }

    .tour-info-price {
        padding: 3px 10px;
    }

    .price-label {
        font-size: 0.7rem;
    }

    .price-value {
        font-size: 0.95rem;
    }

    .tour-info-days {
        font-size: 0.7rem;
    }

    .tour-info-days i {
        font-size: 0.8rem;
    }

    .tour-info-days ul {
        white-space: normal;
        margin: 0;
        padding: 0;
    }

    .tour-info-days ul li {
        line-height: 1.6;
        font-size: 0.65rem;
        margin-bottom: 0;
        padding: 1px 3px;
    }

    .tour-info-duration {
        font-size: 0.65rem;
    }

    .tour-info-duration i {
        font-size: 0.8rem;
    }

    .tour-info-duration ul {
        white-space: normal;
        margin: 0;
        padding: 0;
    }

    .tour-info-duration ul li {
        line-height: 1.6;
        font-size: 0.7rem;
        margin-bottom: 0;
        padding: 1px 3px;
    }
}

@media (max-width: 576px) {
    .tour-info-bar {
        flex-wrap: wrap;
        margin: 0;
        gap: 1px 8px;
        overflow-x: visible;
        overflow-y: visible;
    }

    .tour-info-item {
        display: flex;
        font-size: 0.85rem;
        gap: 2px;
        flex-shrink: 1;
        white-space: normal;
        margin: 0;
    }

    .tour-info-item i {
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .rating-stars {
        gap: 1px;
    }

    .rating-stars i {
        font-size: 1rem;
        margin: 0;
        padding: 0;
    }

    .rating-value {
        font-size: 0.8rem;
        margin-left: 2px;
    }

    .review-count {
        font-size: 0.7rem;
        padding: 0 4px;
    }

    .tour-info-price {
        padding: 2px 8px;
    }

    .price-label {
        font-size: 0.65rem;
    }

    .price-value {
        font-size: 0.85rem;
    }

    .tour-info-days {
        font-size: 0.8rem;
    }

    .tour-info-days i {
        font-size: 0.75rem;
    }

    .tour-info-days ul {
        white-space: normal;
    }

    .tour-info-days ul li {
        font-size: 0.65rem;
        padding: 1px 3px;
    }

    .tour-info-duration {
        font-size: 0.8rem;
    }

    .tour-info-duration i {
        font-size: 0.75rem;
    }

    .tour-info-duration ul {
        white-space: normal;
    }

    .tour-info-duration ul li {
        font-size: 0.68rem;
        padding: 1px 3px;
    }
}

.tab-content h3,
.tab-content h4 {
    font-weight: bolder;
    letter-spacing: 2px;
}

/* Button Loading State */
.btn-loading {
    opacity: 0.8;
    cursor: not-allowed;
    position: relative;
}

.btn-loading .animate-spin {
    margin-right: 5px;
    display: inline-block;
}

.book-this-btn {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.book-this-btn button {
    background-color: var(--deep-green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bolder;
    cursor: pointer;
    text-transform: uppercase;
}

.book-this-btn button:hover {
    background-color: var(--success-color-hover);
}

/* Hide sidebar on mobile - TEMPORARILY DISABLED FOR TESTING */
@media (max-width: 991px) {

    /* #sidebar {
        display: none !important;
    } */
    /* Add padding to footer for sticky button space */
    #footer_1 {
        padding-bottom: 80px !important;
    }
}

/* Mobile sticky booking button */
.mobile-sticky-book-btn {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 5%;
    right: 5%;
    z-index: 9999;
    background: var(--deep-green);
    padding: 12px 20px;
    border-radius: 15px;
    text-align: center;
}

.mobile-sticky-book-btn a {
    display: block;
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.mobile-sticky-book-btn a:hover,
.mobile-sticky-book-btn a:active {
    color: #fff;
}

.mobile-sticky-book-btn .price-text {
    font-size: 1.2em;
}

@media (max-width: 991px) {
    .mobile-sticky-book-btn {
        display: block;
    }

    /* Move scroll-to-top button above sticky booking button */
    #toTop {
        bottom: 90px;
    }
}


/* Tour Features Badges */
.tour-features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 10px 0;
    padding: 0;
}

.tour-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.2s ease;
}

.tour-feature-badge:hover {
    background: #e9ecef;
    border-color: #d0d0d0;
}

.tour-feature-badge i {
    font-size: 1rem;
    color: var(--deep-green);
}

.tour-feature-badge.badge-insurance i {
    color: #17a2b8;
}

.tour-feature-badge.badge-cancellation i {
    color: #28a745;
}

.tour-feature-badge.badge-language i {
    color: #6f42c1;
}

.tour-feature-badge.badge-group i {
    color: #fd7e14;
}

.tour-feature-badge.badge-guide i {
    color: #e83e8c;
}

.tour-feature-badge.badge-pickup i {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .tour-features-badges {
        gap: 8px;
        margin: 15px 0;
    }

    .tour-feature-badge {
        padding: 6px 10px;
        font-size: 0.8rem;
        gap: 5px;
    }

    .tour-feature-badge i {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .tour-features-badges {
        gap: 6px;
        margin: 12px 0;
    }

    .tour-feature-badge {
        padding: 5px 8px;
        font-size: 0.75rem;
        gap: 4px;
    }

    .tour-feature-badge i {
        font-size: 0.85rem;
    }
}

/* Tour Payment Methods Info Block */
.tour-payment-methods-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #555;
    flex-wrap: wrap;
}

.tour-payment-methods-info i {
    font-size: 1.3rem;
    color: var(--deep-green);
    flex-shrink: 0;
}

.tour-payment-methods-label {
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.tour-payment-methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.payment-method-item {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
    transition: all 0.2s ease;
}

.payment-method-item:hover {
    background: #f8f9fa;
    border-color: var(--deep-green);
    color: var(--deep-green);
}

.payment-separator {
    color: #ccc;
    font-size: 0.8rem;
    display: none; /* Hidden since we're using pill-style badges */
}

@media (max-width: 768px) {
    .tour-payment-methods-info {
        padding: 10px 12px;
        gap: 8px;
        margin: 10px 0;
    }

    .tour-payment-methods-info i {
        font-size: 1.1rem;
    }

    .tour-payment-methods-label {
        font-size: 0.85rem;
    }

    .payment-method-item {
        padding: 3px 8px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .tour-payment-methods-info {
        padding: 8px 10px;
        gap: 6px;
    }

    .tour-payment-methods-info i {
        font-size: 1rem;
    }

    .tour-payment-methods-label {
        font-size: 0.8rem;
    }

    .payment-method-item {
        padding: 2px 6px;
        font-size: 0.75rem;
    }
}

/* Tour Timeline Compact Design */
.tour-timeline-compact {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tour-timeline-item {
    background: var(--card-bg);
    border-left: 3px solid var(--deep-green);
    padding: 16px 20px;
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.tour-timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
    height: 25px;
    background: var(--secondary-color);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.tour-timeline-day {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 1px 6px;
    background: transparent;
    border: 1px solid var(--text-color);
    border-radius: 3px;
    flex-shrink: 0;
}

.tour-timeline-time {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
    padding: 2px 4px;
    background: #f8f9fa;
    border-radius: 4px;
}

.tour-timeline-time i {
    color: var(--primary-color);
    font-size: 1rem;
}

.tour-timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    flex: 1 1 auto;
    min-width: 150px;
    text-align: left;
}

.tour-timeline-description {
    margin: 8px 0 0 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.tour-timeline-description p {
    margin: 0;
}

.tour-timeline-note {
    margin-top: 10px;
    background: #fff3cd;
    border-radius: 4px;
    padding: 12px 12px;
    font-size: 0.9rem;
    color: #856404;
}

/* Responsive Design for Timeline */
@media (max-width: 768px) {
    .tour-timeline-compact {
        margin-left: -10px;
        margin-right: -10px;
    }

    .tour-timeline-item {
        padding: 14px 20px;
        margin-bottom: 12px;
        border-radius: 0;
    }

    .tour-timeline-header {
        gap: 6px;
    }

    .tour-timeline-number {
        min-width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .tour-timeline-day {
        font-size: 0.7rem;
        padding: 2px 5px;
    }

    .tour-timeline-time {
        font-size: 0.9rem;
        font-weight: 700;
        padding: 3px 6px;
    }

    .tour-timeline-title {
        font-size: 0.95rem;
        flex: 1 1 auto;
        min-width: 120px;
        text-align: left;
    }

    .tour-timeline-description {
        margin-left: 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .tour-timeline-compact {
        margin-left: -15px;
        margin-right: -15px;
    }

    .tour-timeline-item {
        padding: 12px 18px;
        border-radius: 0;
    }

    .tour-timeline-header {
        gap: 4px;
        flex-wrap: wrap;
    }

    .tour-timeline-number {
        min-width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }

    .tour-timeline-day {
        font-size: 0.65rem;
        padding: 2px 4px;
    }

    .tour-timeline-time {
        font-size: 0.85rem;
        font-weight: 700;
        padding: 2px 5px;
    }

    .tour-timeline-time i {
        font-size: 0.85rem;
    }

    .tour-timeline-title {
        font-size: 0.9rem;
        flex: 1 1 100%;
        min-width: 100%;
        margin-top: 4px;
    }

    .tour-timeline-description {
        margin-left: 0;
        margin-top: 6px;
        font-size: 0.85rem;
    }

    .tour-timeline-note {
        font-size: 0.85rem;
    }
}

/* Touch handling optimizations for slider to avoid scroll-blocking listeners */
/* Allow vertical page scroll while enabling horizontal swipe on the slider */
.slider-pro,
.slider-pro .sp-slides,
.slider-pro .sp-slide,
.slider-pro .sp-thumbnails,
.slider-pro .sp-thumbnail,
#Img_carousel {
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

/* Force thumbnails to fill container with object-fit */
.slider-pro .sp-thumbnail-container,
.slider-pro .sp-thumbnail {
    overflow: hidden;
}

.slider-pro .sp-thumbnail img,
.slider-pro .sp-thumbnail-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
}

/* Skeleton loader for thumbnails */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

.slider-pro .sp-thumbnail {
    position: relative;
    background: linear-gradient(90deg, #f0f0f0 0px, #f8f8f8 40px, #f0f0f0 80px);
    background-size: 600px;
    animation: shimmer 1.5s infinite linear;
}

.slider-pro .sp-thumbnail img {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.slider-pro .sp-thumbnail img.sp-loaded {
    opacity: 1;
}

/* Remove skeleton animation once image is loaded */
.slider-pro .sp-thumbnail.sp-thumbnail-loaded {
    animation: none;
    background: #ffffff;
}

/* Skeleton for main slides */
.slider-pro .sp-slide {
    background: linear-gradient(90deg, #f0f0f0 0px, #f8f8f8 40px, #f0f0f0 80px);
    background-size: 1200px;
    animation: shimmer 1.5s infinite linear;
}

.slider-pro .sp-slide.sp-loaded {
    animation: none;
    background: transparent;
}

/* Dark mode skeleton (optional) */
@media (prefers-color-scheme: dark) {

    .slider-pro .sp-thumbnail,
    .slider-pro .sp-slide {
        background: linear-gradient(90deg, #2a2a2a 0px, #333333 40px, #2a2a2a 80px);
        background-size: 600px;
    }

    .slider-pro .sp-thumbnail.sp-thumbnail-loaded {
        background: #1a1a1a;
    }
}

/* CLS fix: Reserve space for slider before JS loads (aspect ratio 1090:619 ≈ 56.8%) */
#Img_carousel.sp-no-js {
    position: relative;
    width: 100%;
    max-width: 1090px;
    margin: 0 auto;
}

#Img_carousel.sp-no-js .sp-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 1090 / 619;
    overflow: hidden;
}

/* LCP optimization: Show first slide immediately before JS initializes */
.slider-pro.sp-no-js .sp-slides .sp-slide:first-child {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: visible !important;
    z-index: 1;
}

.slider-pro.sp-no-js .sp-slides .sp-slide:first-child .sp-image {
    visibility: visible !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hide other slides and thumbnails until JS is ready */
.slider-pro.sp-no-js .sp-slides .sp-slide:not(:first-child) {
    visibility: hidden;
    position: absolute;
}

.slider-pro.sp-no-js .sp-thumbnails {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

/* LCP image: standalone image outside slider to ensure fetchpriority=high is not modified by JS */
.lcp-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1090px;
    margin: 0 auto;
    aspect-ratio: 1090 / 619;
    background: #f5f5f5;
}

.lcp-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
}

.detailed-title {
    padding: 0;
}

.detailed-title h1 {
    font-size: 3rem;
    padding: 0 0 0 10px;
    margin: 0;
    line-height: 1;
}

.detailed-title .tour-info-bar {
    padding-left: 15px;
    padding-right: 15px;
}
@media (max-width: 768px) {
    #booking_form {
        scroll-margin-top: 80px;
    }
}
/* Ensure carousel doesn't overflow on mobile */
@media (max-width: 768px) {

    .detailed-title h1 {
        font-size: 2.2rem;
        margin-top: 1.5rem;
        padding: 0 5px 0 10px;
        line-height: 1.2;
    }

    .detailed-title .tour-info-bar {
        padding-left: 10px;
        padding-right: 10px;
    }

    #Img_carousel,
    .lcp-hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Hide LCP image when slider is ready */
.slider-ready .lcp-hero-image-wrapper {
    display: none;
}

/* Hide slider until it's ready, show LCP image instead */
.detailed-title:not(.slider-ready) #Img_carousel {
    position: absolute;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.detailed-title.slider-ready #Img_carousel {
    position: relative;
    visibility: visible;
    height: auto;
}

/* Collapsible List Accordion Styles */
.collapsible-list {
    position: relative;
}

.collapsible-list .list-item-hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    transition: max-height 200ms ease-out, opacity 200ms ease-out, margin 200ms ease-out, padding 200ms ease-out;
}

.collapsible-list.expanded .list-item-hidden {
    max-height: 100px;
    opacity: 1;
    margin: 0;
    padding: 0;
    transition: max-height 200ms ease-in, opacity 200ms ease-in, margin 200ms ease-in;
}

.list-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1px;
    margin-left: 15px;
    padding: 1px 1px 1px 6px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease;
    text-transform: capitalize;
}

.list-toggle-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.list-toggle-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.list-toggle-btn i {
    font-size: 0.9rem;
    transition: transform 200ms ease;
}

.list-toggle-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.list-toggle-btn:focus {
    outline: 2px solid var(--deep-green);
    outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .list-toggle-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .list-toggle-btn {
        padding: 5px 10px;
        font-size: 0.85rem;
        gap: 4px;
    }

    .list-toggle-btn i {
        font-size: 0.8rem;
    }
}

/* =========================================
   Payment Method Selection & Details
   ========================================= */

/* Payment Method Select Dropdown */
.aside-booking-form__payment-methods {
    margin-top: 15px;
}

.aside-booking-form__payment-select {
    margin-top: 8px;
}

.aside-booking-form__select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.aside-booking-form__select:hover {
    border-color: var(--primary-color);
}

.aside-booking-form__select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.1);
}

/* Payment Details Container */
.aside-booking-form__payment-details {
    margin-top: 12px;
}

.payment-details-loading {
    text-align: center;
    padding: 15px;
    color: #666;
}

.payment-details-loading .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Payment Details Card */
.payment-details-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px;
}

.payment-details-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-green);
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--deep-green);
}

.payment-details-section {
    margin-bottom: 12px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.payment-details-section:last-child {
    margin-bottom: 0;
}

.payment-details-section h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-details-section h5 i {
    font-size: 1rem;
    color: var(--primary-color);
}

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

.payment-details-list li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: #333;
    border-bottom: 1px dashed #eee;
}

.payment-details-list li:last-child {
    border-bottom: none;
}

.payment-details-list strong {
    color: #666;
    font-weight: 600;
    margin-right: 5px;
}

/* Copyable Elements */
.copyable {
    background: #f0f7ff;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.copyable:hover {
    background: #e0efff;
    transform: scale(1.02);
}

.copyable.copied {
    background: #d4edda;
    color: #155724;
}

.wallet-address {
    word-break: break-all;
    font-size: 0.75rem;
}

/* QR Code */
.payment-qr-code {
    text-align: center;
    margin-top: 10px;
}

.payment-qr-code img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Instructions */
.payment-instructions-text {
    font-size: 0.85rem;
    color: #495057;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 576px) {
    .payment-details-card {
        padding: 12px;
    }

    .payment-details-section {
        padding: 8px;
    }

    .payment-details-list li {
        font-size: 0.8rem;
    }

    .copyable {
        font-size: 0.75rem;
    }

    .payment-qr-code img {
        max-width: 120px;
    }
}