/* Hero Banner Styles */
.hero-banner {
    padding: 80px 0 64px;
    margin-bottom: 30px;
    
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-tagline {
    flex: 1;
}

.tagline-wrapper {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.brand-tagline h1 {
    display: inline;
    font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -.003em;
    line-height: 1.0834933333;
    color: #1d1d1f;
    margin: 0;
    padding-right: 5px;
}

.tagline-part {
    display: inline;
    font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -.003em;
    line-height: 1.0834933333;
    color: #6e6e73;
}

.tagline-second-line {
    margin-top: -5px;
}

.banner-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.action-link {
    font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #0066cc;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.action-link:hover {
    color: #0077ed;
    text-decoration: underline;
}

.action-link::after {
    content: '>';
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.action-link:hover::after {
    transform: translateX(3px);
}

.seller-link {
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 767px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .brand-tagline {
        margin-bottom: 20px;
    }
    
    .tagline-wrapper, .tagline-second-line {
        justify-content: center;
    }
    
    .brand-tagline h1, .tagline-part {
        font-size: 36px;
    }
    
    .banner-actions {
        align-items: center;
    }
}
