

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(107, 31, 84, 0.3);
}

.bannerSwiper {
    width: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    line-height: 0;
}

.swiper-slide picture {
    width: 100%;
    display: block;
    line-height: 0;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}


.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(125, 46, 104, 0.7) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: '' !important;
    display: none;
}

.swiper-button-next svg, .swiper-button-prev svg {
  display: none !important;
}


.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(125, 46, 104, 0.7) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 16px;
    color: white;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(125, 46, 104, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.swiper-pagination {
    z-index: 2;
    bottom: 25px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8) !important;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #97005e 0%, #a64d79 100%) !important;
    width: 32px;
    border-radius: 5px;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Container */
.container {
    display: flex;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
    gap: 2rem;
    position: relative;
}

/* Offers Heading Section */
.offers-heading-section {
    text-align: center;
    padding: 40px 20px 40px;
    position: relative;
    overflow: hidden;
    display: none;

}

.heading-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.29;
    pointer-events: none;
}

.watermark-logo {
    width: 300px;
    height: auto;
    display: block;
}

.offers-main-heading {
    font-size: 2.1rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .offers-heading-section {
        padding: 30px 20px 30px;
    }

    .watermark-logo {
        width: 200px;
    }

    .offers-main-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .offers-heading-section {
        padding: 25px 5px 25px;
    }

    .watermark-logo {
        width: 150px;
    }

    .offers-main-heading {
        font-size: 1.5rem;
    }
}


/* Sidebar Wrapper */
.sidebar-wrapper {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: white;
    /* padding: 20px; */
    border-radius: 16px;
    /* box-shadow: 0 4px 16px rgba(125, 46, 104, 0.1); */
    /* border: 1px solid rgba(125, 46, 104, 0.5); */

}

.clinic-logo {
    width: 180px;
    height: 75px;
    display: block;
    object-fit: contain;
}

/* Filter Sidebar */
.filter-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #f8f5f4;
    padding: 35px 30px;
    border-radius: 16px;
    height: fit-content;
    border: 1px solid rgba(125, 46, 104, 0.21);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.filter-header h3 {
    font-size: 1.5rem;
    color: #97005e;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Clear Button Mobile Version */
.clear-btn-mobile {
    display: none;
    border: 1px solid #97005e;
    color: #212121;
    background: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.clear-btn-mobile:hover {
    background: #97005e;
    color: white;
}

.filter-group {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h4 {
    margin-bottom: 16px;
    color: #2c3e50;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.filter-group label {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    transition: color 0.3s;
    padding: 4px 0;
}

.filter-group label:hover {
    color: #97005e;
}

.filter-group input[type="checkbox"] {
    margin-right: 12px;
    cursor: pointer;
    accent-color: #97005e;
    width: 18px;
    height: 18px;
}

/* Offers Section */
.offers-section {
    flex: 1;
    max-width: 100%;
}

/* Filter Toggle Button (Mobile Only) */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.mobile-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    flex: 1;
    text-align: left;
}

.filter-toggle-btn {
    display: none;
    position: relative;
    background: #97005e;
    border: 2px solid #97005e;
    color: white;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    white-space: nowrap;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.filter-toggle-btn i {
    font-size: 0.9rem;
}

.filter-toggle-btn:hover {
    background: #7d2e68;
    border-color: #7d2e68;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 46, 104, 0.3);
}

/* Close Filter Drawer Button */
.close-filter-drawer {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #97005e;
    font-size: 24px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    min-width: unset;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.close-filter-drawer:hover {
    background: rgba(125, 46, 104, 0.1);
    transform: rotate(90deg);
}

/* Filter Overlay */
.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999998 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-overlay.active {
    display: block !important;
    opacity: 1;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.clear-filters-btn {
    position: relative;
    background: transparent;
    border: 1px solid #97005e;
    color: #212121;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 600;
    padding: 20px 32px;
    border-radius: 8px 16px 16px 8px;
    white-space: nowrap;
    overflow: hidden;
    height: auto;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.clear-filters-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    /* background: #7d2e68; */
    background: #97005e;
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.clear-filters-btn:hover {
    color: white;
}

.clear-filters-btn:hover::before {
    height: 100%;
}

.clear-filters-btn:active {
    transform: scale(0.97);
}

.search-bar {
    background: white;
    padding: 20px 28px;
    border-radius: 8px 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid #97005e;
    transition: all 0.3s;
    flex: 1;
}

.search-bar:focus-within {
    box-shadow: 0 3px 8px rgba(125, 46, 104, 0.21);
    border-color: #97005e;
}

.search-bar i {
    color: #97005e;
    font-size: 1.3rem;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    color: #2c3e50;
}

.search-bar input::placeholder {
    color: #95a5a6;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    padding: 10px 0 20px;
}

.load-more-btn {
    position: relative;
    background: white;
    border: 2px solid #97005e;
    color: #97005e;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    display: inline-flex !important;
    height: auto;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 12px rgba(125, 46, 104, 0.08);
    letter-spacing: 0.5px;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #97005e;
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.load-more-btn:hover {
    color: white;
    border-color: #7d2e68;
    box-shadow: 0 6px 24px rgba(125, 46, 104, 0.2);
    transform: translateY(-2px);
}

.load-more-btn:hover::before {
    height: 100%;
}

.load-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(125, 46, 104, 0.15);
}

.load-more-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.load-more-btn:hover i {
    transform: translateY(2px);
}

.offer-card {
    background: #fdf3f5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.22);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(125, 46, 104, 0.06);
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: auto;
}


.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.44);
    border-color: rgba(125, 46, 104, 0.12);
}

.offer-image {
    width: 240px;
    min-width: 240px;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #f5e6f0 0%, #e8d4e0 50%, #d4c0d8 100%);
    position: relative;
}

.offer-content {
    padding: 18px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.offer-title {
    font-size: 1.35rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.offer-includes {
    margin-bottom: 14px;
    background: transparent;
    padding: 10px 14px;
    border-radius: 10px;
    border: 2px solid #e8d4e0;
    width: 100%;
}

.offer-includes strong {
    color: #97005e;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.offer-includes p {
    font-size: 0.82rem;
    color: #212121;
    margin-bottom: 0;
    line-height: 1.4;
}

.offer-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 12px;
}

.original-price {
    text-decoration: line-through;
    color: #525252;
    font-size: 0.88rem;
    font-weight: 500;
    order: -1;
}

.offer-price {
    font-size: 1.5rem;
    color: #97005e;
    font-weight: bold;
    line-height: 1;
}

.book-btn {
    width: 100%;
    max-width: 170px;
    background: #97005e;
    color: white;
    border: none;
    padding: 9px 24px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    height: auto;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.book-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: left 0.5s;
}

.book-btn:hover::before {
    left: 100%;
}

.book-btn:hover {
    background: linear-gradient(135deg, #5f2350 0%, #97005e 100%);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(125, 46, 104, 0.4);
}

.book-btn:active {
    transform: translateY(0);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s;
}

.modal.modal-show {
    display: block !important;
}

/* Override CSS */
#bookingModal.modal-show {
    display: block !important;
}

.modal-content {
    background: #fdf3f5;
    margin: 5% auto;
    padding: 30px 35px;
    border-radius: 20px;
    width: 90%;
    max-width: 420px;
    position: relative;
    animation: slideDown 0.3s;
    box-shadow: 0 4px 24px rgba(125, 46, 104, 0.15);
    border: 1px solid rgba(125, 46, 104, 0.1);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #95a5a6;
    cursor: pointer;
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: #97005e;
}

.modal-content h2 {
    color: #97005e;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}

.modal-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.form-logo {
    width: 120px;
    height: auto;
    display: none;
    object-fit: contain;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.85rem;
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e8d4e0;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-family: inherit;
    background: white;
    color: #2c3e50;
}

.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e8d4e0;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-family: inherit;
    background: white;
    color: #2c3e50;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2397005e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group input[readonly] {
    background: #f8f5f4;
    cursor: not-allowed;
    color: #666;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #97005e;
    background: white;
    box-shadow: 0 0 0 3px rgba(125, 46, 104, 0.1);
}

.form-group input::placeholder {
    color: #95a5a6;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #97005e 0%, #a64d79 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(125, 46, 104, 0.3);
    margin-top: 8px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #5f2350 0%, #97005e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(125, 46, 104, 0.4);
}

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

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1280px) {
    .container {
        max-width: 1140px;
        gap: 1.5rem;
    }
    
    .filter-sidebar {
        width: 240px;
        padding: 24px 20px;
    }
    
    .filter-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .filter-header h3 {
        font-size: 1.3rem;
    }
    
    .clear-btn {
        font-size: 0.85rem;
        padding: 5px 14px;
    }
    
    .filter-group {
        margin-bottom: 20px;
        padding-bottom: 18px;
    }
    
    .filter-group h4 {
        margin-bottom: 12px;
        font-size: 0.8rem;
    }
    

    .filter-group label {
        margin-bottom: 10px;
        font-size: 0.84rem;
        padding: 3px 0;
    }
    
    .filter-group input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 10px;
    }
    
    .search-container {
        gap: 12px;
    }
    
    .clear-filters-btn {
        padding: 16px 24px;
        font-size: 0.9rem;
    }
    
    .search-bar {
        padding: 14px 20px;
    }
    
    .search-bar i {
        font-size: 1.15rem;
    }
    
    .search-bar input {
        font-size: 0.86rem;
    }
    
    .offer-card {
        max-height: 210px;
    }
    
    .offer-image {
        width: 170px;
        min-width: 170px;
    }
    
    .offer-content {
        padding: 10px 14px;
    }
    
    .offer-title {
        font-size: 1rem;
        margin-bottom: 6px;
        letter-spacing: -0.3px;
    }
    
    .offer-includes {
        padding: 5px 8px;
        margin-bottom: 6px;
        border-radius: 8px;
    }
    
    .offer-includes strong {
        font-size: 0.55rem;
        margin-bottom: 3px;
        letter-spacing: 0.6px;
    }
    
    .offer-includes p {
        font-size: 0.68rem;
        line-height: 1.2;
    }
    
    .offer-pricing {
        margin-bottom: 6px;
        gap: 1px;
    }
    
    .original-price {
        font-size: 0.68rem;
    }
    
    .offer-price {
        font-size: 1.1rem;
        letter-spacing: -0.5px;
    }
    
    .book-btn {
        max-width: 130px;
        padding: 6px 14px;
        font-size: 0.68rem;
        letter-spacing: 0.6px;
        border-radius: 7px;
    }
}

@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container {
        max-width: 1100px;
    }

}


@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .offer-card {
        max-height: 250px;
    }
    
    .container {
        max-width: 980px;
    }

    .offer-image {
        width: 150px;
        min-width: 150px;
    }
    .offer-content {
        padding: 14px 18px;
    }
    
    .offer-title {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .offer-includes {
        padding: 4px 8px;
        margin-bottom: 6px;
    }
    
    .offer-includes strong {
        font-size: 0.5rem;
        margin-bottom: 4px;
    }
    
    .offer-includes p {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .offer-pricing {
        margin-bottom: 8px;
    }
    
    .original-price {
        font-size: 0.69rem;
    }
    
    .offer-price {
        font-size: 1rem;
    }
    
    .book-btn {
        max-width: 140px;
        padding: 6px 16px;
        font-size: 0.7rem;
    }
}

@media (max-width: 968px) {
    .container {
        flex-direction: column;
        padding: 0 20px;
        margin: 30px auto;
    }
    
    .sidebar-wrapper {
        width: 100%;
        max-width: 100%;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        z-index: 999999 !important;
        transition: left 0.3s ease;
        background: white;
        overflow-y: auto;
        padding: 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .sidebar-wrapper.active {
        left: 0 !important;
    }
    
    .logo-section {
        margin-bottom: 20px;
    }
    
    .filter-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 0;
        border: none;
        box-shadow: none;
        padding: 20px 0;
        background: transparent;
    }
    
    .filter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .clear-btn-mobile {
        display: block;
        width: 100%;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .close-filter-drawer {
        display: flex;
    }
    
    .mobile-header {
        display: flex;
        padding: 0 10px;
    }
    
    .filter-toggle-btn {
        display: flex;
    }
    
    .clear-filters-btn {
        display: none;
    }
    
    .search-container {
        flex-wrap: wrap;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .offer-card {
        flex-direction: column;
        max-height: none;
    }
    
    .offer-image {
        width: 100%;
        height: 220px;
        min-width: auto;
    }
    
    
    .offer-content {
        padding: 20px;
    }
    
    .offer-title {
        font-size: 1.3rem;
    }
    
    .offer-includes {
        padding: 12px 16px;
    }
    
    .offer-includes strong {
        font-size: 0.65rem;
    }
    
    .offer-includes p {
        font-size: 0.85rem;
    }
    
    .offer-price {
        font-size: 1.5rem;
    }
    
    .book-btn {
        max-width: 100%;
        padding: 12px 32px;
        font-size: 0.9rem;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .banner-slider {
        height: auto;
    }
    
    .modal-content {
        padding: 35px 25px;
        margin: 10% auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .search-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .clear-filters-btn {
        width: 100%;
        padding: 16px 24px;
    }
    
    .search-bar {
        padding: 16px 20px;
    }
    
    .offer-card {
        max-height: none;
    }
    
    .offer-image {
        height: 200px;
    }

    .swiper-pagination {
        bottom: 2px !important;
    }
    
    .offer-title {
        font-size: 1.25rem;
    }
    
    .offer-includes p {
        font-size: 0.8rem;
    }
    
    .offer-price {
        font-size: 1.4rem;
    }
    
    .original-price {
        font-size: 0.8rem;
    }
    
    .banner-slider {
        height: auto;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
    }
    
    .banner-slider {
        height: auto;
    }
    
    .offer-card {
        max-height: none;
    }
    
    .offer-image {
        height: 180px;
    }
    
    .offer-title {
        font-size: 1.2rem;
    }
    
    .offer-price {
        font-size: 1.35rem;
    }
    
    .offer-content {
        padding: 18px;
    }
    
    .book-btn {
        padding: 10px 24px;
        font-size: 0.8rem;
    }
    
    .filter-sidebar {
        padding: 24px 20px;
    }
    
    .filter-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
        margin: 20px auto;
    }
    
    .banner-slider {
        height: auto;
	margin-top: 70px;   
	}
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .offer-image {
        height: 180px;
    }
    
    .offer-title {
        font-size: 1.1rem;
    }
    
    .offer-includes {
        padding: 8px 10px;
    }
    
    .offer-includes strong {
        font-size: 0.6rem;
    }
    
    .offer-includes p {
        font-size: 0.75rem;
    }
    
    .offer-price {
        font-size: 1.25rem;
    }
    
    .original-price {
        font-size: 0.75rem;
    }
    
    .book-btn {
        padding: 9px 20px;
        font-size: 0.75rem;
    }
    
    .search-bar {
        padding: 14px 16px;
    }
    
    .modal-content {
        padding: 25px 20px;
        width: 95%;
    }
}

@media (max-width: 370px) {
header .container {
        gap: 0;
    }
}
