/* === Global Styles for Product Blocks in Creative Slider === */
/* Add Work Sans font */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&display=swap');


.product-container {
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-family: 'Work Sans', sans-serif; /* Apply Work Sans font to all text in the container */
}

.product-image img {
    width: 230px;
    height: 230px;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

.product-name {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
    font-family: 'Work Sans', sans-serif; /* Ensure Work Sans font is applied */
}

.product-price {
    font-size: 16px;
    margin: 10px 0;
    font-family: 'Work Sans', sans-serif; /* Ensure Work Sans font is applied */
}

.buy-button {
    display: block;
    width: 100%;
    height: 40px;
    background-color: black;
    color: white;
    border: 1px solid black;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Work Sans', sans-serif; /* Ensure Work Sans font is applied */
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.buy-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-10deg);
    transition: left 0.2s ease-in-out;
}

.buy-button:hover {
    background-color: white;
    color: black;
    border-color: black;
    transform: scale(1.01);
}

.buy-button:active {
    transform: scale(0.95);
}
