/* Button Standardization CSS */
.product-buttons {
    display: flex;
    gap: 10px;
}

.product-buttons .btn,
.product-buttons .btn-secondary {
    padding: 12px 25px;
    min-width: 140px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex: 1;
    color: #ffffff;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}

.product-buttons .btn-secondary {
    /* Override the default padding for btn-secondary to match btn */
    padding: 12px 25px;
    background-color: #677142;
    border: none;
    text-align: center;
    width: 100%;
    font-weight: 600;
}

.product-buttons .btn-secondary:hover {
    background-color: #b5c76f;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .product-buttons {
        flex-direction: column;
    }
}
