/* Enhanced Luxury Hotel Booking Styles */
.luxury-booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-booking-modal.active {
    opacity: 1;
}

.luxury-booking-container {
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 30px;
    box-shadow: 
        0 40px 80px -20px rgba(50, 50, 93, 0.25),
        0 25px 50px -12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-booking-modal.active .luxury-booking-container {
    transform: translateY(0);
    opacity: 1;
}

.luxury-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #1a1a1a;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.luxury-close-btn:hover {
    background: #fff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.luxury-booking-content {
    padding: 40px;
    max-height: 90vh;
    overflow-y: auto;
}

.luxury-booking-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.luxury-booking-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c59d5f, #dfbd83);
    border-radius: 3px;
}

.luxury-booking-header h2 {
    font-size: 36px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-weight: 600;
    
}

.luxury-price-per-night {
    font-size: 24px;
    color: #c59d5f;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.luxury-price-per-night::before,
.luxury-price-per-night::after {
    content: '';
    width: 30px;
    height: 1px;
    background: rgba(197, 157, 95, 0.3);
}

.luxury-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    margin-bottom: 2rem;
}

.luxury-calendar-section {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.luxury-guests-section {
    grid-column: 2;
    grid-row: 1;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.luxury-extras-section {
    grid-column: 2;
    grid-row: 2;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Section Headers */
.luxury-guests-section h3,
.luxury-extras-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* Guest Grid */
.luxury-guests-grid {
    display: grid;
    gap: 20px;
}

.luxury-guest-item {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.luxury-guest-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.luxury-guest-item label {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 600;
}

.luxury-guest-item small {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 5px;
}

.luxury-guest-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
}

.guest-decrease,
.guest-increase {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: #c59d5f;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.guest-decrease:hover:not([disabled]),
.guest-increase:hover:not([disabled]) {
    background: #b38d4f;
    transform: translateY(-1px);
}

.guest-decrease[disabled],
.guest-increase[disabled] {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
}

.guest-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 2rem;
    text-align: center;
}

/* Special Offers Section */
.luxury-special-offers {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.luxury-special-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23f0f0f0"/></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.luxury-special-offers h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.luxury-special-offers h3 i {
    color: #c59d5f;
    font-size: 2rem;
}

.luxury-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.luxury-offer-item {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.luxury-offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 157, 95, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.luxury-offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 157, 95, 0.15);
}

.luxury-offer-item:hover::before {
    opacity: 1;
}

.luxury-offer-item.selected {
    border-color: #c59d5f;
    background: #fff;
    box-shadow: 0 15px 30px rgba(197, 157, 95, 0.2);
}

.luxury-offer-item.selected::after {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    background: #c59d5f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-offer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c59d5f, #dfbd83);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.luxury-offer-item:hover .luxury-offer-icon {
    transform: scale(1.1);
}

.luxury-offer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.luxury-offer-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.luxury-offer-discount {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #c59d5f, #dfbd83);
    color: white;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(197, 157, 95, 0.3);
}

.luxury-offer-timer {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.luxury-offer-timer i {
    color: #c59d5f;
}

/* Calendar Styles */
.luxury-calendar-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    
}

.luxury-calendar-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.luxury-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.luxury-calendar-nav button {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #c59d5f;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-calendar-nav button:hover {
    background: rgba(197, 157, 95, 0.1);
    transform: scale(1.1);
}

.luxury-calendar-month {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    
}

.luxury-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 15px;
}

.luxury-weekday {
    font-size: 14px;
    color: #666;
    padding: 5px;
    font-weight: 500;
}

.luxury-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.luxury-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    color: #1a1a1a;
}

.luxury-day:not(.empty):not(.disabled):hover {
    background: rgba(197, 157, 95, 0.1);
    color: #c59d5f;
}

.luxury-day.selected {
    background: #c59d5f;
    color: #fff;
}

.luxury-day.in-range {
    background: rgba(197, 157, 95, 0.1);
    color: #c59d5f;
}

.luxury-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.luxury-day.empty {
    cursor: default;
}

.luxury-selected-dates {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
}

.luxury-check-in,
.luxury-check-out {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.luxury-check-in span,
.luxury-check-out span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.luxury-check-in strong,
.luxury-check-out strong {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

/* Extras Section */
.luxury-extras-grid {
    display: grid;
    gap: 20px;
}

.luxury-extra-item {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.luxury-extra-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.luxury-extra-item.selected {
    border: 2px solid #c59d5f;
    background: rgba(197, 157, 95, 0.02);
}

.luxury-extra-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c59d5f, #dfbd83);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.luxury-extra-info h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 600;
}

.luxury-extra-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.luxury-extra-price {
    font-size: 16px;
    color: #c59d5f;
    font-weight: 600;
}

.luxury-extra-toggle {
    position: relative;
}

.luxury-extra-toggle input {
    display: none;
}

.luxury-extra-toggle label {
    width: 50px;
    height: 26px;
    background: #e0e0e0;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
}

.luxury-extra-toggle label:after {
    content: '';
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.luxury-extra-toggle input:checked + label {
    background: #c59d5f;
}

.luxury-extra-toggle input:checked + label:after {
    transform: translateX(24px);
}

/* Booking Summary */
.luxury-booking-summary {
    background: #fff;
    padding: 2.5rem;
    border-radius: 25px;
    margin-top: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(197, 157, 95, 0.1);
}

.luxury-summary-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.luxury-summary-nights,
.luxury-summary-guests,
.luxury-summary-room,
.luxury-summary-extras {
    text-align: center;
    position: relative;
    padding: 1.8rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 157, 95, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.luxury-summary-nights:hover,
.luxury-summary-guests:hover,
.luxury-summary-room:hover,
.luxury-summary-extras:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(197, 157, 95, 0.1);
    border-color: rgba(197, 157, 95, 0.3);
}

.luxury-summary-details span {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 0.8rem;
}

.luxury-summary-details span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c59d5f, #dfbd83);
    border-radius: 2px;
}

.luxury-summary-details strong {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #1a1a1a, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.luxury-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid rgba(197, 157, 95, 0.1);
}

.luxury-summary-total span {
    font-size: 1.2rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-summary-total strong {
    font-size: 2.5rem;
    color: #c59d5f;
    font-weight: 600;
}

/* Tax Breakdown Styles */
.luxury-tax-breakdown {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 
        0 10px 30px -10px rgba(0, 0, 0, 0.1),
        0 1px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(197, 157, 95, 0.1);
    position: relative;
    overflow: hidden;
}

.luxury-tax-breakdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c59d5f, #dfbd83);
    opacity: 0.5;
}

.luxury-tax-breakdown h4 {
    color: #1a1a1a;
    font-size: 1.4rem;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.tax-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
}

.tax-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.tax-item span {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
}

.tax-rate-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.4rem;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tax-rate-note::before {
    content: 'ℹ';
    font-size: 0.8rem;
    color: #c59d5f;
    width: 18px;
    height: 18px;
    border: 1px solid #c59d5f;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tax-item strong {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
}

.tax-item strong:not(.included) {
    color: #c59d5f;
}

.tax-item.total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed rgba(197, 157, 95, 0.2);
    background: rgba(197, 157, 95, 0.05);
}

.tax-item.total:hover {
    background: rgba(197, 157, 95, 0.08);
}

.tax-item.total span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.tax-item.total strong {
    font-size: 1.4rem;
    color: #c59d5f;
}

/* Super Enhanced Discount Styles - Compact Version */
.luxury-discount-applied {
    background: linear-gradient(135deg, #28a745, #20c997);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 30px rgba(40, 167, 69, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateZ(0);
}

.luxury-discount-applied::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    animation: pulse-discount 2s ease-out infinite;
}

@keyframes pulse-discount {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.luxury-discount-applied i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: bounce-gentle 2s infinite;
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.luxury-discount-applied strong {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.discount-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    position: relative;
}

.savings-amount {
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    animation: highlight-save 2s infinite;
}

@keyframes highlight-save {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.savings-label {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Enhanced Book Now Button */
.luxury-book-now-btn {
    width: 100%;
    padding: 1.2rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #c59d5f, #dfbd83);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 20px rgba(197, 157, 95, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.luxury-book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.luxury-book-now-btn:hover::before {
    left: 100%;
}

.luxury-book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 30px rgba(197, 157, 95, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background: linear-gradient(135deg, #b38d4f, #c59d5f);
}

.luxury-book-now-btn i {
    transition: transform 0.3s ease;
}

.luxury-book-now-btn:hover i {
    transform: translateX(5px);
}

/* Enhanced Total Amount Section */
.luxury-summary-total {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(197, 157, 95, 0.1);
}

.total-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.total-breakdown span {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-with-discount {
    text-align: right;
}

.original-total {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    position: relative;
}

.original-total::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20% !important;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
    transform: rotate(-8deg);
}

.final-total {
    display: block;
    font-size: 2rem;
    background: linear-gradient(135deg, #c59d5f, #dfbd83);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(197, 157, 95, 0.1);
    animation: price-glow 2s infinite;
}

@keyframes price-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .luxury-tax-breakdown {
        padding: 1.5rem;
    }

    .tax-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .tax-item strong {
        align-self: flex-end;
    }

    .luxury-discount-applied {
        padding: 1.5rem;
    }

    .discount-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .savings-label {
        align-self: flex-start;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .luxury-booking-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .luxury-calendar-section,
    .luxury-guests-section,
    .luxury-extras-section {
        grid-column: 1;
    }

    .luxury-calendar-section {
        grid-row: 1;
    }

    .luxury-guests-section {
        grid-row: 2;
    }

    .luxury-extras-section {
        grid-row: 3;
    }

    .luxury-guest-item {
        grid-template-columns: 1fr auto;
    }

    .luxury-booking-content {
        padding: 20px;
    }

    .luxury-special-offers {
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    .luxury-summary-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .luxury-guest-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .luxury-guest-counter {
        justify-content: center;
        margin-top: 1rem;
    }

    .luxury-booking-header h2 {
        font-size: 28px;
    }

    .luxury-price-per-night {
        font-size: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.luxury-book-now-btn:active {
    animation: pulse 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 