.js-store-prod-text a {
    display: inline-block;
    padding: 10px 15px;
    margin-right: 15px;
    margin-top: 20px;
    border-radius: 3px;
    font-weight: 600;
}
.js-store-prod-text a:first-of-type {
    background-color: #bc574b;
    color: #ffffff !important;
}
.js-store-prod-text a:last-of-type {
    background-color: #566d90;
    color: #ffffff !important;
}
 
.t706__cartwin_showed {
    z-index: 999999999;
}


uc-button-container {
    display: flex; /* Arranges buttons side-by-side */
    gap: 10px; /* Adds space between buttons */
    justify-content: center; /* Centers the buttons horizontally */
    margin-top: 50px; /* Adds space above the container */
}

.button-primary,
.button-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.button-primary {
    background-color: #007bff; /* Blue background */
    color: white;
}

.button-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.button-secondary {
    background-color: #6c757d; /* Gray background */
    color: white;
}

.button-secondary:hover {
    background-color: #5a6268; /* Darker gray on hover */
}