.scratch-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.scratch-card-box {
    border: 1px solid #e3ad25;
    padding: 5px;
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
   /*background: #fff; Optional, you can remove to inherit from theme */
}

.scratch-card-box:hover {
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.scratch-thumb img {
    border-radius: 5px !important;
}

.scratch-card-box a {
    font-family: var(--e-global-typography-98c62cb-font-family), Sans-serif;
    font-size: var(--e-global-typography-98c62cb-font-size);
    text-transform: var(--e-global-typography-98c62cb-text-transform);
    color: var(--e-global-color-secondary);
}

.scratch-thumb img {
    width: 100%;
    border-radius: 5px;
}

.scratch-title {
    font-weight: bold;
    margin-top: 15px;
}

.scratch-price {
    font-weight: bold;
    margin: 10px 0;
}

.scratch-btn .button {
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px 20px;
    box-sizing: border-box;
}

.scratch-quantity {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.qty-btn {
    background: #e3ad25;
    color: #000;
    border: none;
    padding: 6px 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.qty-input {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
