/* Hero CTA Buttons */
.hero-cta-primary {
    background: #f97316;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.hero-cta-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.hero-cta-secondary {
    border: 2px solid #f97316;
    color: #f97316;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.hero-cta-secondary:hover {
    background: #f97316;
    color: #ffffff;
}

.search-button {
    background-color: #f97316;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-button:hover {
    background-color: #ea580c;
}

.product-card__button {
    transition: background 0.18s ease;
}

.product-card__button:hover {
    background: #1d4ed8;
}