body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
}
/* Stone Style for Navbar and Footer */
#home-navbar, footer {
    background-image: url('media_files/stone-style.jpg'); /* Swap with your chosen filename */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* Optional overlay for readability */
    /* background-blend-mode: multiply; */
    /* background-color: rgba(228, 214, 204, 0.7); */
}

/* Custom scrollbar for horizontal sections */
.scrollbar-hidden::-webkit-scrollbar {
    display: none;
}

.scrollbar-hidden {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom hover effect for buttons/cards */
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Ensure images are responsive and have rounded corners */
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Generic styles for rounded corners and spacing */
.rounded-xl {
    border-radius: 1rem;
}

/* Custom button styling */
.btn-custom {
    background-color: #e4d6cc;
    color: #2b1102;
    transition-property: background-color, color;
    transition-duration: 200ms;
}
.btn-custom:hover {
    background-color: #d4c2b8;
    color: white;
}

/* The button inside the new footer newsletter */
.btn-newsletter-go {
    background-color: #e4d6cc;
    color: #2b1102;
    transition-property: background-color, color;
    transition-duration: 200ms;
}
.btn-newsletter-go:hover {
    background-color: #d4c2b8;
    color: white;
}

/* Rotate the chevron icon for the FAQ toggle */
.faq-chevron {
    transition: transform 0.3s ease;
}
.faq-chevron.rotate {
    transform: rotate(180deg);
}

/* Styling for the "Show More" functionality */
.truncate-text {
    max-height: 4.5rem;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.truncate-text.expanded {
    max-height: 1000px;
}

/* Host card styling */
.host-card-shadow {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Specific styles for the compact horizontal host card */
.host-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-width: 400px;
    width: 100%;
    display: flex;
    align-items: center;
}

.host-card .profile-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
}

.host-card .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9999px;
}

.host-card .verified-badge {
    bottom: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
}

.host-card .stats-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.host-card .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Custom carousel styling */
.carousel-container {
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 1rem;
}

/* Responsive slide widths */
@media (min-width: 768px) {
    .carousel-slide {
        width: 50%;
    }
}
@media (min-width: 1024px) {
    .carousel-slide {
        width: 33.3333%;
    }
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
}

.carousel-button-prev {
    left: 0;
    border-radius: 0 50% 50% 0;
}

.carousel-button-next {
    right: 0;
    border-radius: 50% 0 0 50%;
}

/* Star rating styling */
.star-rating {
    color: #ffc107;
}

/* Custom styles for the map container */
#map {
    height: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Room detail page styles */
.room-hero {
    position: relative;
    height: 800px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.room-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.room-hero-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    border-radius: 12px;
}

.room-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
}

/* Room card styling */
.room-card {
    background: #f2f2f2;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.room-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Page transitions */
.hidden {
    display: none;
}

/* Amenities list styling */
#amenities-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

#amenities-list li i {
    margin-right: 0.5rem;
    color: #10b981;
}

/* Breadcrumb styling */
#room-details-page nav {
    border-bottom: 1px solid #e5e7eb;
}

#room-details-page nav button {
    background: none;
    border: none;
    font-weight: 500;
}

#room-details-page > nav {
    display: flex !important;
}

#room-details-page nav span.text-gray-400 {
    margin: 0 0.25rem;
}

#home-page, #room-details-page {
    padding-top: 4.5rem;
}

/* Adjust homepage button padding */
#home-navbar .btn-custom {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Invert navbar button colors */
#home-navbar .btn-custom {
    background-color: #2b1102;
    color: #e4d6cc;
}

#home-navbar .btn-custom:hover {
    background-color: #1f0f02;
    color: #fff;
}

#back-to-apts {
    font-size: 1.25rem;
}

/* Constrain the detail page two-column layout */
#room-details-page .container > section:last-of-type .grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    align-items: start;
}

/* Limit the map's height and allow scrolling if content overflows */
#room-map {
    max-height: 800px;
    width: 100%;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Underline & highlight room title on hover */
#room-list-container .room-title {
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
    color: #332D29;
}

#room-list-container .room-title:hover {
    color: #2b1102;
}

/* MODAL STYLING - RESPONSIVE CARD DESIGN */
#room-modal {
    display: none;
    z-index: 10000 !important;
}

#room-modal.flex {
    display: flex;
}

/* Close button - works for both layouts */
.modal-close-btn {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 10004 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    font-weight: bold !important;
    color: #666 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.2s !important;
    backdrop-filter: blur(10px) !important;
}

.modal-close-btn:hover {
    background: #f8f8f8 !important;
    color: #333 !important;
    transform: scale(1.05) !important;
}

/* Desktop Layout - Hide on Mobile/Tablet */
.modal-desktop-layout {
    display: block;
}

/* Mobile Layout - Hide on Desktop */
.modal-mobile-layout {
    display: none;
}

/* Ensure map stays below modals */
#map, .leaflet-container {
    z-index: 1 !important;
}

#chat-icons > a {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chat widget sits at right:1rem; width:3.5rem */
#chat-widget { 
    right: 1rem; 
}

/* Move back-to-apts button to the left of it */
#back-to-apts {
    right: calc(1rem + 3.5rem + 0.5rem);
    bottom: 1rem;
    z-index: 100;
}

/* Apartment Card Carousel */
.apartment-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: #f5f5f5;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-prev {
    left: 8px;
}

.carousel-next {
    right: 8px;
}

.apartment-carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* MOBILE & TABLET RESPONSIVE STYLES - CARD-LIKE MODAL */
@media (max-width: 1024px) {
    /* Hide navbar elements on mobile */
    #home-navbar nav .md\\:flex {
        display: none;
    }
    
    /* Apartment carousel mobile */
    .apartment-carousel {
        height: 180px;
    }
    
    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .carousel-dot {
        width: 6px;
        height: 6px;
    }
    
    /* Room hero mobile */
    .room-hero {
        height: 300px !important;
    }
    
    .room-hero-content {
        padding: 1rem !important;
    }
    
    .room-hero-content h1 {
        font-size: 1.5rem !important;
    }
    
    .room-hero-content p {
        font-size: 0.9rem !important;
    }
    
    /* Grid layout mobile - stack vertically */
    #room-details-page .container > section:last-of-type .grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 1.5rem !important;
        display: grid !important;
    }
    
    /* Enhanced Mobile Map Fixes */
    #room-map {
        display: block !important;
        visibility: visible !important;
        max-height: 300px !important;
        height: 300px !important;
        width: 100% !important;
        min-height: 300px !important;
        order: 2;
        margin-top: 1rem;
    }
    
    .leaflet-container {
        height: 300px !important;
        width: 100% !important;
        min-height: 300px !important;
        display: block !important;
        visibility: visible !important;
        z-index: 1 !important;
    }
    
    /* Ensure map container is visible */
    #room-details-page .container > section:last-of-type .grid > div:last-child {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Room cards mobile layout */
    .room-card {
        flex-direction: column !important;
        text-align: center;
        gap: 1rem;
    }
    
    .room-card .btn-custom {
        width: 100% !important;
        margin-top: 0.5rem;
    }
    
    /* Amenities list mobile */
    #amenities-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    #amenities-list li {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }
    
    /* MODAL LAYOUT SWITCHING */
    .modal-desktop-layout {
        display: none !important;
    }
    
    .modal-mobile-layout {
        display: block !important;
    }
    
    /* Modal Container - Card Style */
    #room-modal .bg-white {
        margin: 0.5rem;
        max-width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
        overflow-y: auto;
        border-radius: 1rem;
        background: white;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    /* Image Section - Top of Card */
    .modal-image-section {
        width: 100%;
        border-radius: 1rem 1rem 0 0;
        overflow: hidden;
        margin-bottom: 0;
    }
    
    .modal-main-image {
        width: 100% !important;
        height: 280px !important;
        object-fit: cover !important;
        border-radius: 1rem 1rem 0 0 !important;
        margin: 0 !important;
        display: block !important;
    }
    
    /* Thumbnails - Centered below main image */
    .modal-thumbnails {
        display: flex !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        flex-wrap: wrap !important;
        padding: 1rem !important;
        background: #f8f9fa !important;
        margin: 0 !important;
    }
    
    .modal-thumbnails img {
        width: 70px !important;
        height: 50px !important;
        object-fit: cover !important;
        border-radius: 0.5rem !important;
        cursor: pointer !important;
        opacity: 0.7 !important;
        transition: all 0.2s !important;
        border: 2px solid transparent !important;
    }
    
    .modal-thumbnails img.selected {
        opacity: 1 !important;
        border: 2px solid #2b1102 !important;
        transform: scale(1.05) !important;
    }
    
    /* Content Section - All content stacked vertically */
    .modal-content-body {
        padding: 1.5rem !important;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Room Title */
    .modal-title {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        color: #2b1102 !important;
        margin: 0 !important;
        text-align: left !important;
        line-height: 1.3 !important;
    }
    
    /* Room Details Grid */
    .modal-room-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 0.75rem;
        margin: 0;
    }
    
    .modal-detail-item {
        text-align: center;
        padding: 0.5rem;
    }
    
    .modal-detail-item .label {
        font-size: 0.8rem;
        color: #666;
        font-weight: 500;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .modal-detail-item .value {
        font-size: 0.95rem;
        color: #2b1102;
        font-weight: 600;
    }
    
    /* Plus Section */
    .modal-plus-section {
        background: #e8f4f8;
        padding: 0.75rem;
        border-radius: 0.5rem;
        text-align: center;
        margin: 0;
    }
    
    .modal-plus-section span {
        color: #2b1102;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    /* Amenities Section */
    .modal-amenities-section {
        margin: 0;
    }
    
    .amenities-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2b1102;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .modal-amenities-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }
    
    .modal-amenities-grid div {
        display: flex !important;
        align-items: center !important;
        padding: 0.75rem !important;
        background: #f8f9fa !important;
        border-radius: 0.5rem !important;
        font-size: 0.85rem !important;
        border: 1px solid #e9ecef !important;
        transition: all 0.2s ease !important;
    }
    
    .modal-amenities-grid div:hover {
        background: #e9ecef !important;
        transform: translateY(-1px) !important;
    }
    
    .modal-amenities-grid i {
        margin-right: 0.75rem !important;
        color: #2b1102 !important;
        width: 18px !important;
        flex-shrink: 0 !important;
        font-size: 1rem !important;
    }
    
    .modal-amenities-grid span {
        color: #444 !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
    }
    
    /* Price Section */
    /* Price Section - Vertical Stacking */
.modal-price {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #2b1102 !important;
    text-align: center !important;
    margin: 1.5rem 0 !important;
    padding: 1.25rem !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-radius: 0.75rem !important;
    border: 2px solid #e9ecef !important;
    
    
    /* Stack pricing lines vertically */
    white-space: pre-line !important;
    line-height: 1.4 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
}


/* Desktop modal price styling */
#modal-room-price-desktop {
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    padding: 1rem !important;
    background: #f8f9fa !important;
    border-radius: 0.5rem !important;
    
    /* Stack pricing lines vertically */
    white-space: pre-line !important;
    line-height: 1.4 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
}

    /* Book Button */
    .modal-book-button {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 1.25rem !important;
        background: #2b1102 !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 0.75rem !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
        margin: 0 !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 12px rgba(43, 17, 2, 0.3) !important;
    }
    
    .modal-book-button:hover {
        background: #1f0f02 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(43, 17, 2, 0.4) !important;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .modal-main-image {
        height: 320px !important;
    }
    
    .modal-amenities-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
    
    .modal-room-details {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
.winter-banner-section {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    box-sizing: border-box;
}

.winter-banner-css {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    background: linear-gradient(135deg, #4a90e2 0%, #7bb3f0 50%, #4a90e2 100%);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 1.2em;
    animation-name: snowfall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    z-index: 1;
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 6s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 7s; animation-delay: 1s; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 5s; animation-delay: 0.5s; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 6.5s; animation-delay: 1.7s; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 5.5s; animation-delay: 0.2s; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 7s; animation-delay: 1.2s; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 6.3s; animation-delay: 2.2s; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 6.7s; animation-delay: 0.8s; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 5.9s; animation-delay: 1.5s; }
.snowflake:nth-child(10) { left: 5%; animation-duration: 7.2s; animation-delay: 0.3s; }

@keyframes snowfall {
    from { 
        transform: translateY(-10px) rotate(0deg); 
        opacity: 1;
    }
    to { 
        transform: translateY(410px) rotate(360deg); 
        opacity: 0.3;
    }
}

.winter-banner-css:hover {
    transform: scale(1.01);
}

.winter-banner-content {
    padding: 30px 25px;
    color: white;
    text-align: center;
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.winter-header h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.winter-header p {
    font-size: 1rem;
    margin: 0 0 20px 0;
    opacity: 0.95;
    font-weight: 500;
}

.winter-perks-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 10px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.winter-perk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 10px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.winter-perk:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.perk-emoji {
    font-size: 1.8rem;
    line-height: 1;
}

.perk-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: white;
}

.perk-text small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.9);
}

.winter-cta {
    margin-top: 15px;
}

.winter-cta-btn {
    background: linear-gradient(135deg, #f5f1eb 0%, #ede7dd 100%);
    color: #2c3e50;
    border: none;
    padding: 13px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.winter-cta-btn:hover {
    background: linear-gradient(135deg, #ede7dd 0%, #e6ddd1 100%);
    transform: translateY(-2px);
    box-shadow: 0 9px 28px rgba(0, 0, 0, 0.35);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .winter-banner-css {
        height: 380px;
    }
    
    .winter-banner-content {
        padding: 20px 18px;
    }
    
    .winter-header h2 {
        font-size: 1.8rem;
    }
    
    .winter-header p {
        font-size: 0.95rem;
    }
    
    .winter-perks-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .winter-perk {
        padding: 10px 8px;
    }
    
    .perk-emoji {
        font-size: 1.5rem;
    }
    
    .perk-text strong {
        font-size: 0.9rem;
    }
    
    .perk-text small {
        font-size: 0.75rem;
    }
    
    .winter-cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .winter-banner-css {
        height: 360px;
    }
    
    .winter-banner-content {
        padding: 15px 15px;
    }
    
    .winter-header h2 {
        font-size: 1.6rem;
    }
    
    .winter-header p {
        font-size: 0.85rem;
    }
    
    .winter-perks-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .winter-perk {
        padding: 8px 6px;
    }
    
    .perk-emoji {
        font-size: 1.3rem;
    }
    
    .perk-text strong {
        font-size: 0.8rem;
    }
    
    .perk-text small {
        font-size: 0.7rem;
    }
}
@media (max-width: 600px) {
    .winter-banner-css {
        height: 460px; /* Allows space for all perks stacked vertically */
        max-width: 98vw;
        min-width: 0;
        border-radius: 10px;
    }
    .winter-banner-content {
        padding: 16px 6px;
    }
    .winter-header h2 {
        font-size: 1.05rem;
        margin-bottom: 6px;
        word-break: break-word;
    }
    .winter-header p {
        font-size: 0.82rem;
        margin-bottom: 10px;
    }
    .winter-perks-row {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 10px 0;
        max-width: 100%;
    }
    .winter-perk {
        padding: 7px 4px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    .perk-emoji {
        font-size: 1.1rem;
    }
    .perk-text strong {
        font-size: 0.88rem;
    }
    .perk-text small {
        font-size: 0.70rem;
        line-height: 1.1;
    }
    .winter-cta-btn {
        font-size: 0.92rem;
        padding: 11px 10px;
        margin-top: 6px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 18px;
    }
}
