/* Homepage specific styles */
.header-main .logo img {
    max-height: 45px;
    display: block;
    transition: transform 0.3s ease;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.cart-count {
    background: var(--danger-color);
    color: white;
    border-radius: 50px;
    font-size: 0.6rem;
    padding: 2px 6px;
}

.hero-banner {
    background: var(--shoppi-blue-gradient);
    color: white;
    padding: 80px 0 100px;
    border-radius: 0 0 60px 60px;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shoppi-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.shoppi-modal-overlay.active {
    display: flex;
}

.shoppi-modal-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 90vh;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.shoppi-video-container {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.shoppi-video-item {
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    position: relative;
}

/* News/Discovery Pills and Badges handled in home.css */
/* HyperLocal & Near Me UI Refinements */
.hyperlocal-widget {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hyperlocal-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.explore-near-me-btn {
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.2);
}

.explore-near-me-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
    background: #ffca28 !important;
}

.explore-near-me-btn.active {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.3);
}

.local-news-ticker {
    background: white;
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

#local-news-content {
    animation: slideInNews 0.5s ease-out;
}

@keyframes slideInNews {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Passport Switcher Style */
.top-bar-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
