/* eSIM Archive Page Styles */
.hero_text{
    padding-top: 40px;
    max-width: 650px;
    margin: auto;
    font-size: 15px;
    line-height: 20px;
}

.esim-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.esim-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

/* Creative background elements */
.esim-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(235, 67, 30, 0.1);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.esim-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.esim-hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.esim-hero-image:hover {
    transform: scale(1.05);
}

.esim-hero-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #eb431e, #667eea);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.esim-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.esim-hero h1 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    margin: 0 0 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.esim-hero h1 .destination-name {
    color: #eb431e;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(235, 67, 30, 0.3);
    background: linear-gradient(45deg, #eb431e, #ff6b47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-size: clamp(2rem, 4vw, 3.2rem);
    overflow: unset !important;
}

.trustpilot-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-review-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-review-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.trustpilot-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.trustpilot-stars .star {
    color: #ffd700;
    font-size: 14px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
}

.trust-rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 4px;
}

.trust-rating-number {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.trust-rating-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

.money-back-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(12, 11, 98, 0.9), rgba(8, 7, 70, 0.9));
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(12, 11, 98, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.money-back-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 11, 98, 0.3);
}

.money-back-badge::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.6s ease;
}

.money-back-badge:hover::before {
    left: 100%;
}

.guarantee-icon {
    font-size: 16px;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.guarantee-main {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.guarantee-sub {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .esim-hero {
        padding: 50px 0 70px;
        min-height: 45vh;
    }
    
    .esim-hero-image {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }
    
    .esim-hero h1 {
        margin-bottom: 20px;
    }
    
    .trustpilot-container {
        margin-top: 25px;
        gap: 12px;
        flex-wrap: wrap;
        max-width: 400px;
    }
    
    .trust-review-badge {
        padding: 8px 12px;
        gap: 6px;
    }
    
    .trustpilot-stars .star {
        font-size: 12px;
    }
    
    .trust-rating-number {
        font-size: 14px;
    }
    
    .trust-rating-text {
        font-size: 10px;
    }
    
    .money-back-badge {
        padding: 8px 12px;
        gap: 6px;
    }
    
    .guarantee-icon {
        font-size: 14px;
    }
    
    .guarantee-main {
        font-size: 11px;
    }
    
    .guarantee-sub {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .esim-hero {
        padding: 40px 0 60px;
        min-height: 40vh;
    }
    
    .esim-hero-image {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }
    
    .trustpilot-container {
        flex-direction: column;
        gap: 10px;
        max-width: 280px;
    }
    
    .trust-review-badge,
    .money-back-badge {
        padding: 6px 10px;
        gap: 5px;
        width: 100%;
        justify-content: center;
    }
    
    .trustpilot-stars .star {
        font-size: 11px;
    }
    
    .trust-rating-number {
        font-size: 12px;
    }
    
    .trust-rating-text {
        font-size: 9px;
    }
    
    .guarantee-icon {
        font-size: 12px;
    }
    
    .guarantee-main {
        font-size: 10px;
    }
    
    .guarantee-sub {
        font-size: 8px;
    }
}

.esim-archive-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.results-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 40px;
    color: #0c0b62;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #0c0b62 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    padding: 20px 0;
}

.results-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #eb431e 0%, #0c0b62 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(235, 67, 30, 0.3);
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px;
    padding: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(235, 67, 30, 0.1);
}

.tab-button {
    padding: 12px 24px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: #666;
    border-radius: 20px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.tab-button.active {
    background: #eb431e;
    color: white;
    box-shadow: 0 2px 8px rgba(235, 67, 30, 0.3);
}

.tab-button:hover {
    color: #eb431e;
    background: rgba(235, 67, 30, 0.1);
}

.tab-button.active:hover {
    color: white;
    background: #eb431e;
}

/* Tab Content Animation Styles */
.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.tab-pane.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}

.tab-pane .products-grid {
    animation: fadeInSlide 0.4s ease-out 0.1s both;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden; /* Changed from hidden to visible for popup */
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #eb431e 0%, #0c0b62 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 12px 40px rgba(235, 67, 30, 0.15);
    transform: translateY(-4px);
    border-color: rgba(235, 67, 30, 0.3);
}

.product-card:hover::before {
    transform: scaleX(1);
}

/* Product Card Header */
.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
}

.product-card-content {
    flex: 1;
    min-width: 0;
}

.product-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0c0b62;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.product-card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.location-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.location-more {
    font-size: 12px;
    color: #eb431e;
    background: rgba(235, 67, 30, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.product-card-thumbnail {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.product-card-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(235, 67, 30, 0.1), rgba(12, 11, 98, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-card-thumbnail {
    border-color: #eb431e;
    transform: scale(1.05);
}

.product-card:hover .product-card-thumbnail::after {
    opacity: 1;
}

.product-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Network Support Section */
.product-card-network {
    margin-bottom: 24px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f3 100%);
    border-radius: 8px;
    border: 1px solid rgba(235, 67, 30, 0.1);
}

.network-support {
    display: flex;
    align-items: center;
    gap: 8px;
}

.network-label {
    font-size: 14px;
    font-weight: 600;
    color: #0c0b62;
    white-space: nowrap;
}

.network-text {
    font-size: 14px;
    font-weight: 500;
    color: #eb431e;
}

/* Old network badge styles - kept for reference but not used
.network-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.network-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.network-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.product-card:hover .network-badge::before {
    left: 100%;
}

.network-badge.network-3g {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    border-color: #ffdc00;
}

.network-badge.network-4g {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    color: #0c5460;
    border-color: #17a2b8;
}

.network-badge.network-5g {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-color: #28a745;
}
*/

/* Product Card Footer */
.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    /* margin-top: auto; */
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.product-card-price {
    font-size: 24px;
    font-weight: 800;
    color: #eb431e;
    white-space: nowrap;
}

.product-card-button {
    background: linear-gradient(135deg, #eb431e 0%, #d63384 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-button::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 ease;
}

.product-card-button:hover::before {
    left: 100%;
}

.product-card-button:hover {
    background: linear-gradient(135deg, #d63384 0%, #eb431e 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 67, 30, 0.3);
}

.product-card-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(235, 67, 30, 0.2);
}

.no-products {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f3 100%);
    border-radius: 16px;
    margin: 40px 0;
    border: 1px solid rgba(235, 67, 30, 0.1);
}

.no-products-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #eb431e 0%, #0c0b62 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 30px rgba(235, 67, 30, 0.3);
    animation: pulse-gentle 2s ease-in-out infinite;
}

@keyframes pulse-gentle {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 30px rgba(235, 67, 30, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 12px 40px rgba(235, 67, 30, 0.4);
    }
}

.no-products h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0c0b62;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.no-products p {
    font-size: 16px;
    color: #666;
    margin: 0 0 32px 0;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-products-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #eb431e 0%, #0c0b62 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 67, 30, 0.3);
    border: none;
    cursor: pointer;
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 67, 30, 0.4);
    text-decoration: none;
    color: white;
}

.btn-explore.secondary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #0c0b62;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-explore.secondary:hover {
    color: #0c0b62;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-explore i {
    transition: transform 0.3s ease;
}

.btn-explore:hover i {
    transform: translateX(2px);
}

/* Mobile responsive for no-products */
@media (max-width: 768px) {
    .no-products {
        padding: 60px 20px;
        margin: 30px 0;
    }
    
    .no-products-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .no-products h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .no-products p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .no-products-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-explore {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Cart Link Styles */
.cart-link {
    position: relative;
    color: #333;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cart-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
}

@media (max-width: 768px) {
    .esim-hero h1 {
        font-size: 2rem;
    }
    
    .esim-hero-image {
        width: 150px;
        height: 150px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-navigation {
        flex-direction: column;
    }
    
    .product-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .product-card-thumbnail {
        width: 40px;
        height: 40px;
    }
    
    .product-card-footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .product-card-button {
        width: 100%;
        min-width: auto;
    }
    
    .network-support {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .network-label {
        font-size: 13px;
    }
    
    .network-text {
        font-size: 13px;
    }
}

/* Destination Search Shortcode Styles */
.destination-search-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 500px;
    margin: auto;
}

.destination-search-container {
    position: relative;
}

.destination-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.destination-search-input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    min-height: 50px;
    box-sizing: border-box;
}

.destination-search-input:focus {
    outline: none;
    border-color: #eb431e;
    box-shadow: 0 0 0 3px rgba(235, 67, 30, 0.2);
}

.destination-search-input:hover {
    border-color: #eb431e;
    box-shadow: 0 4px 12px rgba(235, 67, 30, 0.1);
}

.destination-search-input::placeholder {
    color: #666;
    font-weight: 500;
}

.destination-search-icon {
    position: absolute;
    right: 16px;
    color: #eb431e;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.destination-search-dropdown {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background: white;
    border: 2px solid #eb431e;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    margin-top: -2px;
}

.destination-search-list {
    padding: 8px 0;
}

.destination-search-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.destination-search-option:last-child {
    border-bottom: none;
}

.destination-search-option:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f3 100%);
    color: #eb431e;
}

.destination-search-option.active-option {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f3 100%);
    color: #eb431e;
}

.destination-search-no-results {
    padding: 20px 16px;
    text-align: center;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.no-results-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.no-results-icon {
    font-size: 24px;
    opacity: 0.5;
}

.no-results-text {
    font-size: 14px;
    font-weight: 500;
}

.destination-option-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}

.destination-option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.destination-option-name {
    font-weight: 600;
    color: #0c0b62;
    font-size: 14px;
}

.destination-option-count {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.destination-option-arrow {
    color: #ccc;
    transition: color 0.2s ease;
    margin-left: 8px;
}

.destination-search-option:hover .destination-option-arrow {
    color: #eb431e;
}

/* Style Variations */
.destination-search-compact .destination-search-input {
    padding: 8px 40px 8px 12px;
    min-height: 40px;
    font-size: 14px;
}

.destination-search-compact .destination-search-icon {
    right: 12px;
}

.destination-search-compact .destination-option-image {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.destination-search-compact .destination-search-option {
    padding: 8px 12px;
}

.destination-search-hero .destination-search-input {
    padding: 16px 60px 16px 20px;
    min-height: 60px;
    font-size: 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.destination-search-hero .destination-search-icon {
    right: 20px;
}

.destination-search-hero .destination-search-dropdown {
    border-radius: 0 0 16px 16px;
}

.destination-search-hero .destination-option-image {
    width: 40px;
    height: 40px;
    margin-right: 16px;
}

.destination-search-hero .destination-search-option {
    padding: 16px 20px;
}

.destination-search-hero .destination-option-name {
    font-size: 16px;
}

/* Mobile Responsive for Destination Search */
@media (max-width: 768px) {
    .destination-search-wrapper {
        max-width: 100%;
    }
    
    .destination-search-input {
        padding: 10px 40px 10px 14px;
        font-size: 14px;
        min-height: 45px;
    }
    
    .destination-search-icon {
        right: 14px;
    }
    
    .destination-search-dropdown {
        max-height: 250px;
    }
    
    .destination-search-option {
        padding: 10px 14px;
    }
    
    .destination-option-name {
        font-size: 13px;
    }
    
    .destination-option-count {
        font-size: 11px;
    }
    
    .destination-search-hero .destination-search-input {
        padding: 12px 50px 12px 16px;
        font-size: 16px;
        min-height: 50px;
    }
    
    .destination-search-hero .destination-search-icon {
        right: 16px;
    }
}

/* Country Info and Popup Styles */
.product-card-location {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.country-info {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: #eb431e;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(235, 67, 30, 0.2);
    background-color: rgba(235, 67, 30, 0.05);
    position: relative;
}

.country-info:hover {
    background-color: rgba(235, 67, 30, 0.1);
    border-color: rgba(235, 67, 30, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(235, 67, 30, 0.15);
}

.globe-icon {
    margin-right: 4px;
    font-size: 14px;
}

.country-count {
    font-size: 12px;
    font-weight: 600;
}

/* Popup Styles - Global popup approach */
#global-destinations-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

#global-destinations-popup[style*="block"] {
    display: flex !important;
}

.popup-content {
    background: white;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: popupSlideUp 0.3s ease-out;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
    background: linear-gradient(135deg, #eb431e 0%, #d63384 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.popup-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.popup-close {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    line-height: 1;
}

.popup-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 24px;
    max-height: 400px;
    overflow-y: auto;
}

.destinations-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.destinations-list li {
    padding: 12px 16px;
    font-size: 15px;
    color: #333;
    position: relative;
    padding-left: 40px;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin-bottom: 2px;
    border-bottom: 1px solid #f0f0f0;
    background-color: rgba(255, 255, 255, 0.2);
}

.destinations-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.destinations-list li:before {
    content: '�';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.destinations-list li:hover {
    background-color: rgba(235, 67, 30, 0.05);
    color: #eb431e;
    transform: translateX(4px);
}

/* Animations */
@keyframes popupFadeIn {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

@keyframes popupSlideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Popup Styles */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 10px;
        max-height: 85vh;
    }
    
    .popup-header {
        padding: 16px 20px;
    }
    
    .popup-header h4 {
        font-size: 16px;
    }
    
    .popup-body {
        padding: 20px;
        max-height: 350px;
    }
    
    .country-info {
        font-size: 13px;
        padding: 3px 8px;
    }
    
    .globe-icon {
        font-size: 13px;
    }
    
    .country-count {
        font-size: 11px;
    }
    
    .destinations-list li {
        padding: 10px 14px;
        font-size: 14px;
        gap: 10px;
    }
    
    .destination-flag {
        width: 20px;
        height: 20px;
    }
    
    .destination-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
}

/* Override existing destination list styles with flexbox layout */
.destinations-list li {
    padding: 12px 16px !important;
    padding-left: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.destinations-list li:before {
    display: none !important;
}

.destination-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.destination-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.destination-name {
    flex: 1;
    font-weight: 500;
}
