/* 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 */