:root {
    --bg-color: #f7f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #717171;
    --border-color: #d1d5db;
    --primary-blue: #007fad;
    --hover-blue: #006b94;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background-color: var(--bg-color);
}

.logo {
    display: flex;
    align-items: center;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: #eef2f5;
}

.signin-container {
    position: relative;
}

.popover {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    width: 320px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 16px;
    z-index: 10;
}

.popover::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 48px;
    width: 16px;
    height: 16px;
    background-color: var(--white);
    transform: rotate(45deg);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-left: 1px solid rgba(0,0,0,0.05);
}

.popover-content {
    display: flex;
    gap: 16px;
    position: relative;
}

.popover-icon {
    font-size: 24px;
    background-color: #ffd84d;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.popover-text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    padding-right: 16px;
}

.btn-create-account {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-create-account:hover {
    background-color: #f3f4f6;
}

.btn-close-popover {
    position: absolute;
    top: -4px;
    right: -4px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
}

.main-content {
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero p {
    font-size: 16px;
    color: var(--text-secondary);
}

.search-container {
    margin-top: 24px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 8px;
    border: 1px solid var(--border-color);
}

.search-field {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    flex: 1;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.search-field:hover {
    background-color: #f3f4f6;
}

.search-icon {
    color: var(--text-secondary);
    margin-right: 12px;
    flex-shrink: 0;
}

.field-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.field-content label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.field-content input, .field-content .value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
}

.clear-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
    margin: 0 8px;
}

.btn-search {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0 32px;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-left: 8px;
}

.btn-search:hover {
    background-color: var(--hover-blue);
}

.destination {
    flex: 1.5;
}

@media (max-width: 900px) {
    .search-box {
        flex-direction: column;
        align-items: stretch;
    }
    
    .divider {
        width: 100%;
        height: 1px;
        margin: 4px 0;
    }

    .btn-search {
        margin: 8px 0 0 0;
    }
}

.search-field-wrapper {
    position: relative;
    flex: 1;
}

.search-field.dates {
    width: 100%;
}

.search-field.active {
    box-shadow: 0 0 0 2px var(--primary-blue);
    background-color: var(--white);
}

.calendar-popover {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 24px;
    z-index: 20;
    cursor: default;
}

.calendar-popover.show {
    display: block;
}

.calendar-months {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.month {
    flex: 1;
}

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

.month-header h3 {
    font-size: 16px;
    font-weight: 700;
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.nav-btn:hover {
    background-color: #f3f4f6;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    background-color: #f3f4f6;
    border-radius: 8px;
    padding: 8px 0;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    row-gap: 8px;
}

.days div {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.days div:not(.empty):not(.selected):not(.in-range):hover {
    background-color: #f3f4f6;
    border-radius: 50%;
}

.days .selected {
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    font-weight: 600;
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary-blue);
}

.days .in-range {
    background-color: #e5f2f7;
    color: var(--text-primary);
}

.days .in-range::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2px;
    right: -2px;
    background-color: #e5f2f7;
    z-index: -1;
}

.days .selected.start::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -2px;
    left: 50%;
    background-color: #e5f2f7;
    z-index: -1;
}

.days .selected.end::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2px;
    right: 50%;
    background-color: #e5f2f7;
    z-index: -1;
}

.calendar-shortcuts {
    display: flex;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.shortcut-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.shortcut-btn:hover {
    border-color: var(--primary-blue);
    background-color: #f8fbfe;
}

.menu-container {
    position: relative;
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 280px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 16px 0;
    z-index: 30;
}

.menu-dropdown.show {
    display: block;
}

.menu-section {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.menu-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    padding: 0 20px;
    margin-bottom: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.2s;
}

.menu-item:hover {
    background-color: #f3f4f6;
}

.menu-item svg {
    color: var(--text-primary);
    flex-shrink: 0;
}

/* Modal CSS */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.modal-close:hover {
    background-color: #f3f4f6;
}

.modal-header {
    margin-bottom: 24px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.social-login-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: background-color 0.2s;
}

.social-btn:hover {
    background-color: #f8f9fa;
}

.divider-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider-text span {
    padding: 0 12px;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.email-form label {
    font-size: 14px;
    font-weight: 600;
}

.modal-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.modal-input:focus {
    border-color: var(--primary-blue);
}

.btn-continue {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    transition: opacity 0.2s;
}

.btn-continue:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
}

.modal-terms {
    margin-top: 24px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.modal-terms a {
    color: var(--primary-blue);
    text-decoration: none;
}

.modal-terms a:hover {
    text-decoration: underline;
}

/* Hot Hotel Deals Section */
.hot-deals-section {
    margin-top: 48px;
    margin-bottom: 32px;
}

.hot-deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hot-deals-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.see-more-deals {
    color: #007fad;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.see-more-deals:hover {
    color: #005a7d;
    text-decoration: underline;
}

.deals-carousel-container {
    position: relative;
}

.deals-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 4px 16px 4px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
}

.deals-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.deal-card {
    flex: 0 0 268px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.deal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.deal-card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
    background-color: #e5e7eb;
}

.deal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.deal-card:hover .deal-card-image img {
    transform: scale(1.03);
}

.deal-card-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hotel-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a1120;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.hotel-location {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-badge.green {
    background-color: #008009;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    padding: 2px 6px;
    border-radius: 4px;
}

.rating-text {
    font-size: 13px;
    color: #1a1a1a;
}

.rating-text strong {
    font-weight: 700;
}

.deal-badge-container {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.deal-pill.red-pill {
    background-color: #b81432;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.deal-source {
    font-size: 13px;
    color: #555555;
    margin-bottom: 6px;
}

.deal-source.logo-source {
    display: flex;
    align-items: center;
}

.deal-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 4px;
}

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

.deal-price {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-period {
    font-size: 13px;
    color: #666666;
}

.card-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: background-color 0.2s, border-color 0.2s;
}

.card-arrow-btn:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.deal-dates {
    font-size: 12px;
    color: #666666;
    margin-top: 6px;
}

.carousel-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #1a1a1a;
    transition: background-color 0.2s, transform 0.2s, opacity 0.2s;
}

.carousel-nav:hover {
    background-color: #f9fafb;
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav.prev {
    left: -20px;
}

.carousel-nav.next {
    right: -20px;
}

.carousel-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Deal Promo Strip CSS */
.deal-promo-strip {
    margin-top: 32px;
    margin-bottom: 48px;
    background: linear-gradient(90deg, #7ee3ff 0%, #8be8ff 40%, #6cd5ff 100%);
    border-radius: 16px;
    padding: 16px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 127, 173, 0.08);
}

.strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 16px;
}

.strip-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.strip-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strip-text {
    font-size: 16px;
    color: #0a1120;
    line-height: 1.4;
}

.strip-text strong {
    font-weight: 700;
    margin-right: 4px;
}

.strip-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-tag.tag-1 {
    position: absolute;
    top: -8px;
    left: 45%;
    opacity: 0.9;
}

.bg-tag.tag-2 {
    position: absolute;
    bottom: -8px;
    left: 66%;
    opacity: 0.9;
}

.strip-right {
    flex-shrink: 0;
}

.btn-find-deals {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #ffffff;
    border: 1.5px solid #1a1a1a;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.btn-find-deals:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .strip-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .strip-right {
        width: 100%;
    }
    
    .btn-find-deals {
        width: 100%;
        justify-content: center;
    }
}

/* App Banner CSS */
.app-banner {
    margin-top: 60px;
}

.app-banner-content {
    background-color: #e52a5a;
    border-radius: 12px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.app-banner-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.app-banner-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.app-benefits {
    list-style: none;
    margin-bottom: 32px;
}

.app-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    margin-bottom: 12px;
}

.app-banner-actions {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.qr-code {
    background-color: var(--white);
    padding: 8px;
    border-radius: 12px;
    flex-shrink: 0;
}

.stats-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.3);
}

.store-buttons {
    display: flex;
    gap: 16px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #000;
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.store-btn:hover {
    transform: translateY(-2px);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-sub {
    font-size: 10px;
    opacity: 0.8;
}

.store-main {
    font-size: 16px;
    font-weight: 600;
}

.app-banner-image {
    position: absolute;
    right: 48px;
    bottom: -40px;
    z-index: 1;
}

.phone-mockup {
    width: 240px;
    height: 480px;
    background-color: var(--white);
    border: 12px solid #333;
    border-radius: 32px;
    position: relative;
    color: var(--text-primary);
    overflow: hidden;
}

.price-drop-badge {
    position: absolute;
    top: 140px;
    left: -20px;
    right: -20px;
    background-color: #00aa13;
    color: var(--white);
    padding: 12px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.phone-content {
    display: flex;
    flex-direction: column;
}

.phone-logo {
    padding: 24px 0;
    display: flex;
    justify-content: center;
}

.phone-hotel-img {
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
}

.phone-hotel-info {
    padding: 16px;
}

.phone-hotel-info strong {
    font-size: 16px;
    line-height: 1.3;
    display: block;
    margin-bottom: 8px;
}

/* Footer CSS - 5 Column Layout */
.site-footer {
    background-color: #f5f5f5;
    border-top: 1px solid #e7e7e7;
    padding: 48px 24px 36px;
    margin-top: 60px;
}

.footer {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 48px 0 32px 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.footer-strip {
    margin-top: 0;
    margin-bottom: 40px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #262626;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.15s ease;
}

.footer-col ul li a:hover {
    color: #006ce4;
    text-decoration: underline;
}

.footer-selector-row {
    margin-top: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.country-currency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px 4px 0;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.country-currency-btn:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.flag-icon {
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.currency-code {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.footer-divider-line {
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 24px;
}

.footer-legal-bottom {
    text-align: center;
}

.corporate-disclaimer {
    font-size: 12px;
    color: #474747;
    margin-bottom: 4px;
    line-height: 1.4;
}

.copyright-text {
    font-size: 12px;
    color: #474747;
    margin-bottom: 20px;
}

.partner-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 8px;
}

.brand-logo {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.2px;
    cursor: pointer;
    transition: opacity 0.2s;
    user-select: none;
}

.brand-logo:hover {
    opacity: 0.75;
}

.brand-logo.bcom {
    font-size: 17px;
    font-weight: 800;
    color: #003580;
}

.brand-logo.priceline {
    font-size: 16px;
    font-weight: 700;
    color: #0068ef;
    font-style: italic;
}

.brand-logo.kayak {
    font-size: 15px;
    font-weight: 900;
    color: #ff690f;
    letter-spacing: 2px;
}

.brand-logo.agoda {
    font-size: 16px;
    font-weight: 700;
    color: #202020;
}

    font-weight: 700;
    color: #da3743;
}

@media (max-width: 992px) {
    .footer-columns-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 30px 0 20px 0;
    }

    .footer-columns-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .footer-col h4 {
        padding: 16px 0;
        margin: 0;
        cursor: pointer;
        border-bottom: 1px solid #e2e8f0;
        font-size: 15px;
        font-weight: 700;
        color: #1e293b;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-chevron-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
    }

    .footer-chevron {
        transition: transform 0.25s ease;
        color: #64748b;
    }

    .footer-col h4.active .footer-chevron {
        transform: rotate(180deg);
        color: #0f172a;
    }

    .footer-col ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease-out, opacity 0.2s ease;
        opacity: 0;
        padding-left: 8px;
        box-sizing: border-box;
    }

    .footer-col.expanded ul {
        max-height: 300px;
        opacity: 1;
        padding-top: 12px;
        padding-bottom: 16px;
        border-bottom: 1px solid #f1f5f9;
    }

    .footer-legal-bottom {
        text-align: center;
        padding-top: 24px;
    }
}

/* === SEARCH RESULTS PAGE & COMPACT HEADER SEARCH === */
.header-search-container {
    flex: 1;
    max-width: 620px;
    margin: 0 16px;
    position: relative;
}

.header-search-container.hidden {
    display: none;
}

.header-search-box {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 2px 4px 2px 16px;
    height: 48px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}

.header-search-box:hover {
    box-shadow: var(--shadow-md);
}

.header-search-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.header-search-field label {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 2px;
}

.header-search-field input,
.header-search-field .value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-search-field.destination {
    position: relative;
    padding-right: 20px;
}

.header-clear-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 16px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.header-divider {
    width: 1px;
    height: 24px;
    background-color: var(--border-color);
    margin: 0 12px;
    flex-shrink: 0;
}

.header-field-wrapper {
    position: relative;
    flex: 1.2;
    min-width: 0;
    height: 100%;
}

.header-field-wrapper .dates,
.header-field-wrapper .guests {
    height: 100%;
}

.btn-header-search {
    background-color: #007fad;
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.btn-header-search:hover {
    background-color: #006b94;
}

/* === GUEST POPOVER SYSTEM === */
.guests-popover {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 320px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 100;
    cursor: default;
    border: 1px solid var(--border-color);
}

.guests-popover.show {
    display: block;
}

.guests-popover-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.guests-popover-row:last-of-type {
    border-bottom: none;
}

.row-label {
    display: flex;
    flex-direction: column;
}

.row-label .main-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.row-label .sub-label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
}

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

.control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    font-size: 18px;
    font-weight: 600;
    color: #007fad;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.control-btn:hover:not(:disabled) {
    border-color: #007fad;
    background-color: #f0f9ff;
}

.control-btn:disabled {
    color: #d1d5db;
    border-color: #e5e7eb;
    cursor: not-allowed;
}

.control-value {
    font-size: 15px;
    font-weight: 700;
    width: 16px;
    text-align: center;
}

.guests-popover-actions {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
}

.btn-apply-guests {
    background-color: #007fad;
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-apply-guests:hover {
    background-color: #006b94;
}

/* === FILTERS BAR === */
.filters-bar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 24px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.filters-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

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

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
}

.filter-btn:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.filter-btn.primary-filter {
    background-color: #1a1a1a;
    color: var(--white);
    border-color: #1a1a1a;
}

.filter-btn.primary-filter:hover {
    background-color: #333333;
}

.filter-btn.dropdown-filter svg {
    color: var(--text-secondary);
}

/* === RESULTS META === */
.results-meta {
    max-width: 1280px;
    margin: 20px auto 12px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: var(--text-secondary);
}

.results-count strong {
    color: var(--text-primary);
}

.results-info {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.results-info:hover {
    text-decoration: underline;
}

/* === RESULTS LAYOUT === */
.results-layout {
    max-width: 1280px;
    margin: 0 auto 40px;
    padding: 0 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

/* Hotel Result Card */
.hotel-result-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06), 0 2px 16px rgba(0,0,0,0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
    min-height: 240px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hotel-result-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hotel-card-left {
    display: flex;
    flex: 1;
    min-width: 0;
}

.hotel-image-carousel {
    width: 250px;
    height: 100%;
    position: relative;
    background-color: #e5e7eb;
    flex-shrink: 0;
}

.hotel-image-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-choice-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #007fad;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.heart-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.2s;
}

.heart-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

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

.carousel-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
}

.carousel-dots .dot.active {
    background-color: var(--white);
}

.hotel-details-content {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.hotel-header-info {
    margin-bottom: 8px;
}

.hotel-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stars {
    color: #f48f00;
    font-size: 12px;
    letter-spacing: 1px;
}

.hotel-details-content .rating-row {
    margin-bottom: 16px;
}

.rating-score {
    background-color: #008009;
    color: var(--white);
    font-weight: 700;
    font-size: 13.5px;
    padding: 2px 6px;
    border-radius: 4px;
}

.rating-label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-primary);
}

.rating-reviews-count {
    font-size: 13px;
    color: var(--text-secondary);
}

.hotel-feature-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.hotel-feature-location svg {
    color: var(--text-secondary);
}

.hotel-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.hotel-card-right {
    width: 200px;
    border-left: 1px solid #f3f4f6;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    flex-shrink: 0;
    background-color: #fafbfc;
}

.discount-badge {
    background-color: #b81432;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.amenity-badge {
    font-size: 12.5px;
    color: #008009;
    font-weight: 600;
    margin-bottom: 8px;
}

.partner-title {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.our-lowest-label {
    font-size: 11px;
    color: #008009;
    font-weight: 700;
    background-color: #e6f6e7;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price-stay-total {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.price-taxes-info {
    font-size: 10.5px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-align: right;
}

.btn-view-deal {
    background-color: #008009;
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.2s;
    margin-bottom: 12px;
}

.btn-view-deal:hover {
    background-color: #006607;
}

.alternative-deals {
    width: 100%;
    border-top: 1px solid #f3f4f6;
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-primary);
}

.alt-deal-item span {
    font-weight: 700;
}

.alt-deal-arrow {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

/* === STICKY MAP COLUMN === */
.map-column {
    width: 440px;
    position: sticky;
    top: 76px;
    height: calc(100vh - 96px);
    flex-shrink: 0;
}

.map-sticky-container {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.aruba-map-mockup {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #d1ebf7; /* Water body background */
    user-select: none;
}

.map-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 70% 30%, #e8ecd7 0%, #e8ecd7 60%, #d1ebf7 61%, #d1ebf7 100%);
}

.map-label {
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    text-shadow: 1px 1px 0px white, -1px -1px 0px white, 1px -1px 0px white, -1px 1px 0px white;
}

.map-label.noord { top: 15%; right: 40%; }
.map-label.ruins { top: 22%; right: 15%; }
.map-label.beach { top: 38%; right: 8%; }
.map-label.paradera { top: 48%; right: 30%; }
.map-label.oranjestad { top: 62%; left: 10%; }
.map-label.cruz { top: 72%; right: 15%; }

/* Price tags styled exactly as on Google/Trivago maps */
.map-price-bubble {
    position: absolute;
    background-color: var(--white);
    color: var(--text-primary);
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 100px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.18), 0 0 2px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.15s, z-index 0.15s;
    border: 1px solid rgba(0,0,0,0.1);
}

.map-price-bubble:hover {
    transform: scale(1.1);
    z-index: 10;
    background-color: #007fad;
    color: var(--white);
    border-color: #007fad;
}

.map-price-bubble.active {
    background-color: #007fad;
    color: var(--white);
    border-color: #007fad;
}

/* Map Controls */
.map-ctrl {
    position: absolute;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    color: var(--text-primary);
}

.map-ctrl:hover {
    background-color: #f9fafb;
}

.expand-btn {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.zoom-btns {
    bottom: 80px;
    right: 16px;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    width: 32px;
    height: 64px;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.zoom-btns button {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-primary);
}

.zoom-btns button:first-of-type {
    border-bottom: 1px solid var(--border-color);
}

.zoom-btns button:hover {
    background-color: #f9fafb;
}

.satellite-thumbnail {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    z-index: 5;
}

.satellite-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-attribution {
    position: absolute;
    bottom: 4px;
    left: 8px;
    font-size: 9px;
    color: #4a5568;
    display: flex;
    gap: 8px;
    z-index: 5;
    text-shadow: 1px 1px 0px white, -1px -1px 0px white;
}

@media (max-width: 1024px) {
    .map-column {
        display: none;
    }
}

/* Mobile App Bottom Navigation Bar styling */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    justify-content: space-around;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748b;
    font-size: 11px;
    font-weight: 500;
    position: relative;
    flex: 1;
    height: 100%;
}

.nav-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
    transition: transform 0.2s, stroke 0.2s;
}

.nav-item.active {
    color: #1b65f2;
    font-weight: 700;
}

.nav-item.active .nav-icon {
    stroke: #1b65f2;
    transform: scale(1.1);
}

.nav-active-dot {
    display: none;
    width: 5px;
    height: 5px;
    background-color: #1b65f2;
    border-radius: 50%;
    position: absolute;
    top: 4px;
}

.nav-item.active .nav-active-dot {
    display: block;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 64px !important;
    }
    
    /* Header layout responsiveness */
    header, .header-container {
        padding: 10px 16px !important;
        flex-direction: row;
        justify-content: space-between;
    }
    .header-right, .top-nav-links {
        display: none !important;
    }

    /* Index search panel responsiveness */
    .hero-search-container {
        padding: 12px !important;
        margin: 10px !important;
    }
    .search-inputs-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .search-btn {
        width: 100% !important;
    }

    /* Search list layout responsiveness */
    .search-results-layout {
        grid-template-columns: 1fr !important;
    }
    .filters-sidebar {
        display: none !important; /* Abstract filters on mobile view list */
    }
    .hotel-card {
        flex-direction: column !important;
        height: auto !important;
    }
    .hotel-card-image {
        width: 100% !important;
        height: 200px !important;
    }
    .hotel-card-info {
        padding: 12px !important;
    }
    .hotel-card-actions {
        border-left: none !important;
        border-top: 1px solid #eee !important;
        width: 100% !important;
        padding: 12px !important;
    }
}

/* FASTNETSTAYS.COM Header & Modal Logo Styling */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.logo-fastnet {
    color: #0f172a;
    text-decoration: underline;
    text-decoration-color: #0f172a;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    letter-spacing: 0.5px;
}
.logo-stays {
    color: #FF6B6B; /* Coral pink color matching const Color(0xFFFF6B6B) */
    letter-spacing: 0.3px;
}
.logo-com {
    color: #64748b;
    font-size: 0.7em;
    font-weight: 600;
    margin-left: 2px;
}
.logo-dots {
    display: flex;
    gap: 5px;
    margin-top: 4px;
}
.logo-dots .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
}
.dot-red { background-color: #ef4444; }
.dot-orange { background-color: #f97316; }
.dot-amber { background-color: #f59e0b; }
.dot-green { background-color: #22c55e; }
.dot-blue { background-color: #3b82f6; }

/* Subscription Deal Banner 100% Matching Spec */
.subscription-deal-banner {
    position: relative;
    background-color: #73d4ff;
    border-radius: 12px;
    padding: 16px 24px;
    margin: 45px auto 50px auto;
    max-width: 1200px;
    height: 72px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(115, 212, 255, 0.15);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: visible;
    box-sizing: border-box;
}

.sub-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 50px;
    z-index: 2;
}

.sub-banner-text {
    font-size: 15px;
    color: #000000;
    display: flex;
    gap: 6px;
    align-items: center;
}

.sub-banner-text .text-bold {
    font-weight: 700;
}

.sub-banner-text .text-regular {
    font-weight: 400;
}

.sub-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sub-input {
    border: 1.5px solid #000000;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    outline: none;
    width: 220px;
    background-color: #ffffff;
    font-family: inherit;
    box-sizing: border-box;
}

.btn-sub {
    background-color: #ffffff;
    color: #000000;
    border: 1.5px solid #000000;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}

.btn-sub:hover {
    background-color: #f1f5f9;
}

/* Floating Percentage Tags */
.banner-tag {
    position: absolute;
    background-color: #e52a5a;
    border: 2px solid #000000;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    font-size: 16px;
    z-index: 1;
}

.tag-left {
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
}

.tag-top {
    top: -16px;
    left: 45%;
    transform: rotate(15deg);
    width: 28px;
    height: 28px;
    font-size: 13px;
}

.tag-bottom {
    bottom: -16px;
    left: 65%;
    transform: rotate(-15deg);
    width: 28px;
    height: 28px;
    font-size: 13px;
}

/* Sparkle details */
.sparkle {
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
}
.sp-1 {
    top: -10px;
    right: -10px;
}
.sp-2 {
    bottom: -10px;
    left: -10px;
}

@media (max-width: 992px) {
    .subscription-deal-banner {
        height: auto;
        padding: 20px;
        margin: 20px 16px;
        overflow: hidden;
    }
    .sub-banner-content {
        flex-direction: column;
        gap: 16px;
        padding-left: 0;
        text-align: center;
    }
    .sub-banner-text {
        flex-direction: column;
        gap: 4px;
    }
    .sub-form {
        width: 100%;
        flex-direction: column;
    }
    .sub-input {
        width: 100%;
    }
    .btn-sub {
        width: 100%;
    }
    .banner-tag {
        display: none;
    }
}

