/* ==========================================
   2. RESULTS PAGE STYLES (.results-page)
   ========================================== */

.results-page {
    background-color: #f2eee9;
}

/* Results Header */
.results-page .header {
    background: #fff;
    border-bottom: 1px solid #EDEDED;
    padding: 10px 0;
}

.results-page .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-page .logo span {
    font-size: 20px;
    font-weight: 800;
    color: #15284D; /* Added: Match site dark navy */
}

.results-page .header-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.results-page .header-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #F1F3F4;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #3C4043;
    cursor: pointer;
    transition: all 0.2s ease; /* Added: Smooth transitions */
}

.results-page .header-btn:hover {
    background: #E8F0FE; /* Added: Blue tint hover */
    color: #1A73E8; /* Added: Primary blue on hover */
}

.results-page .login-btn {
    background: transparent;
    border: 1px solid #DADCE0; /* Added: Subtle border */
}

.results-page .login-btn:hover {
    background: #f8f9fa; /* Added: Light hover */
    border-color: #1A73E8; /* Added: Blue border on hover */
}

/* Compact Search Bar for Results */
.results-page .compact-search-bar {
    background: #f2eee9;
    padding: 8px 0;
    border-bottom: 1px solid #EDEDED;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.results-page .search-widget-bar {
    background: #fff;
    border: 1px solid #DADCE0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 6px;
    height: 48px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); /* Added: Subtle shadow */
}

.results-page .search-item {
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 100%;
    flex: 1;
}

.results-page .search-item .icon {
    font-size: 16px;
    color: #1A73E8; /* Changed: Primary blue instead of gray */
    margin-right: 8px;
}

.results-page .search-item .txt-input {
    border: none;
    outline: none;
    font-size: 13px;
    font-weight: 700;
    color: #202124;
    background: transparent;
    width: 100%;
}

.results-page .search-item .code {
    font-size: 10px;
    color: #70757A;
    margin-left: 4px;
}

.results-page .swap {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #DADCE0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1A73E8; /* Changed: Primary blue */
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease; /* Added */
}

.results-page .swap:hover {
    background: #E8F0FE; /* Added: Blue tint hover */
    border-color: #1A73E8; /* Added */
    transform: rotate(180deg); /* Added: Fun rotation effect */
}

.results-page .separator-lg {
    width: 1px;
    height: 24px;
    background-color: #dadce0;
}

.results-page .search-submit {
    background-color: #1A73E8; /* Primary blue */
    height: 48px;
    padding: 0 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    color: #fff; /* Added: White text */
    border: none; /* Added */
    cursor: pointer; /* Added */
    transition: all 0.2s ease; /* Added */
}

.results-page .search-submit:hover {
    background-color: #1557b0; /* Added: Darker blue hover */
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3); /* Added */
}

.results-page .map {
    display: flex;
    gap: 4px;
    justify-content: flex-end;
    padding: 8px 0;
    color: #1A73E8; /* Changed: Primary blue for link */
    font-size: 12px;
    font-weight: 600;
}

.results-page .map a {
    color: inherit;
    text-decoration: none; /* Added */
}

.results-page .map a:hover {
    text-decoration: underline; /* Added */
}

/* Results Grid & Cards */
/* Results Grid & Sidebar Filters */
.results-page .results-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 16px;
    padding-top: 10px;
}

.results-page .results-stats {
    font-size: 15px;
    font-weight: 800;
    color: #15284D; /* Dark navy - matches site headings */
    margin-bottom: 16px;
}

.results-page .filter-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #EDEDED;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); /* Added: Subtle shadow */
}

.results-page .filter-block {
    margin-bottom: 12px;
    border-bottom: 1px solid #F1F3F4;
    padding-bottom: 12px;
}

.results-page .filter-block:last-child {
    border-bottom: none;
}

.results-page .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.results-page .filter-header h4 {
    font-size: 13px;
    font-weight: 700;
    color: #15284D; /* Dark navy */
}

.results-page .filter-header i {
    font-size: 10px;
    color: #1A73E8; /* Changed: Primary blue */
    cursor: pointer; /* Added */
}

.results-page .filter-sub-txt {
    font-size: 12px;
    color: #15284D; /* Dark navy */
    font-weight: 400;
    margin-bottom: 8px;
}

.results-page .check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 13px;
    color: #15284D; /* Dark navy */
    cursor: pointer;
    transition: color 0.2s ease; /* Added */
}

.results-page .check-item:hover {
    color: #1A73E8; /* Added: Blue on hover */
}

.results-page .check-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1A73E8; /* Primary blue */
    border: 1px solid #DADCE0;
    border-radius: 4px;
    cursor: pointer; /* Added */
}

.results-page .price-hint {
    margin-left: auto;
    font-size: 12px;
    color: #70757A;
}

.results-page .toggle-item,
.results-page .airline-combo-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 13px;
    color: #15284D; /* Dark navy */
}

.results-page .switch {
    width: 36px;
    height: 20px;
    background: #E8EAED;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: 0.2s;
}

.results-page .switch::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Added */
}

.results-page .switch.active {
    background: #1A73E8; /* Primary blue */
}

.results-page .switch.active::after {
    left: 19px;
}

/* Range Slider Visuals */
.results-page .range-slider-wrap {
    padding: 10px 0;
}

.results-page .range-line {
    height: 1px;
    background: #DADCE0;
    position: relative;
    margin: 15px 0;
}

.results-page .range-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid #1A73E8; /* Primary blue */
    border-radius: 50%;
    position: absolute;
    top: -8px;
    z-index: 5;
    cursor: pointer; /* Added */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Added */
}

.results-page .range-dot.left {
    left: 0;
}

.results-page .range-dot.right {
    right: 0;
}

.results-page .range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #15284D; /* Dark navy */
    font-weight: 600;
}

/* Airlines Specific */
.results-page .airline-combo-toggle {
    gap: 8px;
    justify-content: flex-start;
}

.results-page .info-icon {
    margin-left: 4px;
    color: #1A73E8; /* Primary blue */
    cursor: pointer;
    margin-right: auto;
    transition: transform 0.2s ease; /* Added */
}

.results-page .info-icon:hover {
    transform: scale(1.1); /* Added */
}

.results-page .show-all-link {
    display: block;
    font-size: 13px;
    color: #1A73E8; /* Primary blue */
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 4px;
    text-decoration: none; /* Added */
    cursor: pointer; /* Added */
}

.results-page .show-all-link:hover {
    text-decoration: underline; /* Added */
    color: #1557b0; /* Added: Darker blue */
}

.results-page .sorting-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #EDEDED;
    margin-bottom: 20px;
    padding: 6px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); /* Added */
}

.results-page .sort-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
    position: relative;
    flex: 1;
}

.results-page .sort-item.active {
    background: #E8F0FE; /* Light blue background - matches site theme */
}

.results-page .sort-item:hover:not(.active) {
    background: #f8f9fa; /* Added: Subtle hover */
}

.results-page .sort-item strong {
    font-size: 14px;
    font-weight: 600;
    color: #15284D; /* Dark navy */
}

.results-page .sort-item span {
    font-size: 14px;
    color: #70757A;
    font-weight: 400;
}

.results-page .sort-item i {
    font-size: 12px;
    color: #1A73E8; /* Changed: Primary blue */
    margin-left: auto;
}

/* Subtle vertical dividers */
.results-page .sort-divider {
    width: 1px;
    height: 32px;
    background-color: #EDEDED;
    flex-shrink: 0;
}

/* Flight Cards - MATCHING SITE THEME */
.results-page .flight-card {
    background: #fff;
    overflow: hidden;
    padding: 0px !important;
    gap: 0 !important;
    border-radius: 20px;
    border: 1px solid #DADCE0;
    display: flex;
    margin-bottom: 12px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); /* Added */
    transition: box-shadow 0.2s ease, transform 0.2s ease; /* Added */
}

.results-page .flight-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); /* Added: Elevate on hover */
    transform: translateY(-2px); /* Added: Slight lift */
}

.results-page .card-main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.results-page .leg-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.results-page .leg-separator {
    height: 1px;
    background: #F1F3F4;
    margin: 16px 0;
}

.results-page .airline-part {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 140px;
}

.results-page .airline-part img {
    width: 40px;
    height: 40px;
    border-radius: 8px; /* Added: Rounded corners */
    object-fit: cover; /* Added */
}

.results-page .airline-txt strong {
    font-size: 14px;
    font-weight: 600;
    color: #15284D; /* Dark navy */
}

.results-page .airline-txt span {
    font-size: 12px;
    color: #70757A;
}

.results-page .time-city {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.results-page .time-bold {
    font-size: 26px;
    font-weight: 800;
    color: #15284D; /* Dark navy - matches site headings */
}

.results-page .date-grey {
    font-size: 14px;
    color: #70757A;
    margin-top: 4px;
}

.results-page .date-orange {
    color: #FF4522; /* Orange/Red - matches site accent */
    font-weight: 600;
}

.results-page .city-grey {
    font-size: 14px;
    color: #70757A;
    margin-top: 2px;
}

.results-page .path-viz {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 280px;
    padding: 0 20px;
}

.results-page .total-time-top {
    font-size: 13px;
    color: #70757A;
    margin-bottom: 8px;
}

.results-page .path-line-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.results-page .city-pill {
    background: #F1F3F4;
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #15284D; /* Dark navy */
}

.results-page .viz-line-wrap {
    flex: 1;
    height: 1px;
    background: #BDC1C6;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 5px;
}

.results-page .viz-line-wrap::before,
.results-page .viz-line-wrap::after,
.results-page .mid-dot {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border: 1px solid #BDC1C6;
    border-radius: 50%;
    position: absolute;
    top: -3px;
    z-index: 2;
}

.results-page .viz-line-wrap::before {
    left: -3px;
}

.results-page .viz-line-wrap::after {
    right: -3px;
}

.results-page .mid-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.results-page .conn-info-bold {
    font-weight: 700;
    font-size: 14px;
    color: #15284D; /* Dark navy */
    margin-top: 8px;
}

.results-page .conn-city-tiny {
    font-size: 12px;
    color: #70757A;
}

.results-page .card-action {
    width: 200px;
    padding: 24px;
    background: #fff;
    border-left: 1px solid #F1F3F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.results-page .large-price {
    font-size: 32px;
    font-weight: 900;
    color: #15284D; /* Dark navy - matches site */
    margin-bottom: 6px;
}

.results-page .btn-buy-now {
    margin-top: 20px;
    width: 100%;
    background: #1A73E8; /* Changed: Primary blue instead of light blue */
    color: #fff; /* Changed: White text */
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.results-page .btn-buy-now:hover {
    background: #1557b0; /* Darker blue */
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3); /* Added */
    transform: translateY(-1px); /* Added */
}

/* ==========================================
   FLIGHT DETAILS MODAL STYLES (PREMIUM)
   ========================================== */
.results-page .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 40, 77, 0.7); /* Changed: Dark navy tint overlay */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.results-page .modal-overlay.show {
    display: flex;
}

.results-page .modal-content {
    background: #fff;
    width: 780px;
    max-height: 95vh;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(21, 40, 77, 0.25); /* Changed: Navy tinted shadow */
    position: relative;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.results-page .modal-header {
    padding: 28px 32px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    background: #fff; /* Added */
}

.results-page .modal-header .title-area h2 {
    font-size: 24px;
    font-weight: 800;
    color: #15284D; /* Dark navy */
    letter-spacing: -0.02em;
}

.results-page .modal-header .title-area p {
    font-size: 14px;
    color: #70757A; /* Changed: Match site gray */
    margin-top: 2px;
}

.results-page .close-modal {
    background: #f8fafc;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    color: #70757A; /* Changed: Match site gray */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.results-page .close-modal:hover {
    background: #E8F0FE; /* Changed: Light blue */
    color: #1A73E8; /* Changed: Primary blue */
    transform: rotate(90deg);
}

.results-page .modal-body {
    padding: 24px 32px;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: #1A73E8 transparent; /* Changed: Blue scrollbar */
}

/* Custom Scrollbar */
.results-page .modal-body::-webkit-scrollbar {
    width: 6px;
}

.results-page .modal-body::-webkit-scrollbar-thumb {
    background-color: #1A73E8; /* Changed: Primary blue */
    border-radius: 10px;
}

.results-page .modal-body::-webkit-scrollbar-track {
    background: #f1f5f9; /* Added */
}

.results-page .modal-leg-section {
    margin-bottom: 40px;
}

.results-page .leg-title-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 16px;
}

.results-page .leg-title-row h3 {
    font-size: 28px;
    font-weight: 800;
    color: #15284D; /* Dark navy */
}

.results-page .leg-title-row .duration-text {
    font-size: 16px;
    color: #70757A; /* Changed: Match site gray */
    font-weight: 500;
}

.results-page .modal-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    color: #15284D; /* Changed: Dark navy */
    font-size: 15px;
    background: #f8fafc;
    padding: 10px 16px;
    border-radius: 12px;
}

.results-page .modal-meta-item i {
    font-size: 18px;
    color: #1A73E8; /* Primary blue */
}

.results-page .segment {
    margin-top: 35px;
    padding-left: 8px;
}

.results-page .airline-mini {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.results-page .airline-mini img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.results-page .airline-info strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #15284D; /* Dark navy */
}

.results-page .airline-info span {
    font-size: 14px;
    color: #70757A; /* Changed: Match site gray */
}

/* Vertical Timeline (Premium Style) */
.results-page .timeline {
    position: relative;
    padding-left: 28px;
    margin-left: 14px;
    border-left: 2px solid #E8F0FE; /* Changed: Light blue line */
}

.results-page .time-point {
    position: relative;
    padding-bottom: 35px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.results-page .time-point:last-child {
    padding-bottom: 10px;
}

.results-page .tp-dot {
    position: absolute;
    left: -34px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: #fff;
    border: 3px solid #1A73E8; /* Primary blue */
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px #fff;
}

.results-page .tp-txt {
    width: 70px;
    display: flex;
    flex-direction: column;
}

.results-page .tp-time {
    font-size: 20px;
    font-weight: 800;
    color: #15284D; /* Dark navy */
}

.results-page .tp-date {
    font-size: 13px;
    color: #70757A; /* Changed: Match site gray */
    margin-top: 4px;
}

.results-page .tp-date.date-alt {
    color: #FF4522; /* Orange/Red - matches site */
    font-weight: 700;
}

.results-page .tp-loc {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.results-page .tp-city {
    font-size: 19px;
    font-weight: 800;
    color: #15284D; /* Dark navy */
}

.results-page .tp-airport {
    font-size: 14px;
    color: #70757A; /* Changed: Match site gray */
    margin-top: 4px;
}

.results-page .tp-code {
    background: #E8F0FE; /* Changed: Light blue background */
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    color: #1A73E8; /* Changed: Primary blue text */
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.results-page .flight-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    color: #70757A; /* Changed: Match site gray */
    font-size: 14px;
    padding-left: 4px;
}

/* Layover Box (Soft Design) - Themed */
.results-page .layover-box {
    background: #FFF4F2; /* Changed: Light orange tint */
    border: 1px dashed #FF4522; /* Changed: Orange border */
    border-radius: 16px;
    padding: 14px 24px;
    margin: 25px 0;
    font-size: 15px;
    font-weight: 600;
    color: #FF4522; /* Orange - matches site */
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-page .layover-box::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.results-page .modal-separator {
    height: 1px;
    background: #E8F0FE; /* Changed: Light blue */
    margin: 40px 0;
}

/* Modal Footer */
.results-page .modal-footer {
    padding: 24px 32px;
    border-top: 1px solid #f1f5f9;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-page .price-side {
    display: flex;
    flex-direction: column;
}

.results-page .foot-price {
    font-size: 36px;
    font-weight: 900;
    color: #15284D; /* Dark navy */
    letter-spacing: -0.02em;
}

.results-page .foot-trip {
    font-size: 15px;
    color: #70757A; /* Changed: Match site gray */
}

.results-page .btn-buy-modal {
    background: #1A73E8; /* Changed: Primary blue */
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 18px 70px;
    font-size: 19px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(26, 115, 232, 0.3); /* Changed: Blue shadow */
}

.results-page .btn-buy-modal:hover {
    background: #1557b0; /* Darker blue */
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(26, 115, 232, 0.4); /* Changed: Blue shadow */
}

.results-page .btn-buy-modal:active {
    transform: translateY(0);
}

/* Results Footer - Matching Site Footer */
.results-page .footer {
    background-color: #15284D; /* Changed: Dark navy - matches site footer */
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: none; /* Removed: Light border */
}

.results-page .footer-inner {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.results-page .footer-col h4 {
    font-size: 11px;
    color: #8D8D8D; /* Kept as is */
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
}

.results-page .footer-col ul li {
    margin-bottom: 8px;
}

.results-page .footer-col ul li a {
    color: #fff; /* Changed: White for dark footer */
    font-size: 13px;
    font-weight: 600;
    text-decoration: none; /* Added */
    transition: color 0.2s ease; /* Added */
}

.results-page .footer-col ul li a:hover {
    color: #1A73E8; /* Added: Blue on hover */
}

.results-page .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1); /* Changed: Subtle white line */
}

.results-page .legal-info p {
    color: rgba(255,255,255,0.6); /* Changed: Light white */
    font-size: 11px;
    margin-top: 6px;
}

.results-page .store-btn {
    background: transparent; /* Changed */
    border: 1px solid rgba(255,255,255,0.3); /* Changed: White border */
    color: #fff; /* Added */
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease; /* Added */
}

.results-page .store-btn:hover {
    background: #1A73E8; /* Added */
    border-color: #1A73E8; /* Added */
    color: #fff; /* Added */
}


.modify-search-fab{
    position:fixed;
    right: 0;
    bottom:10px;
   background: linear-gradient(135deg, #f0970a, #df8007);
    color:#fff;
    border:none;
    padding:14px 15px;
   border-top-left-radius: 5px;
   border-bottom-left-radius: 5px;
    font-weight:600;
    font-size: 15px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,0.18);
    z-index:999;
    transition:.3s;
}

.modify-search-fab:hover{
    transform:translateY(-3px);
}


.modify-close{
    position:absolute;
    right:18px;
    top:18px;
    font-size:22px;
    cursor:pointer;

            background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 10px;
    border-radius: 999px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}


.modify-box{
   
    width:40%;
    max-width:1100px;
    background:#fff;
    border-radius:20px;
   
    position:relative;
    animation:popup .35s ease;
}

@keyframes popup{
    from{transform:scale(.9);opacity:0;}
    to{transform:scale(1);opacity:1;}
}


.modify-overlay{
    position:fixed;
    inset:0;
    background: rgba(21, 40, 77, 0.7);
        backdrop-filter: blur(4px); 
    display:none;
    align-items:center;
    justify-content:center;
    padding:40px 20px;   /* ⭐ screen se gap */
    z-index:1000;
}

.modify-overlay.active{
    display:flex;
}


.modify-flex{display: flex;
    justify-content: space-between;
    gap: 15px;

    .width{
    width: 50%;

    input{width:198px}
}
}









