@media (min-width: 1024px) {
    .page-wrapper {
        display: flex;
        justify-content: center;
        padding: 20px;
        width: 300px;
    }

    .product-card {
        max-width: 380px;
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        background-color: #fafafa;
    }

    .quantity-section {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        gap: 10px;
    }

    .quantity-section label {
        font-weight: bold;
    }

    .quantity-section input[type="number"] {
        width: 60px;
        padding: 5px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .cart-buttons button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        padding: 6px;
        font-size: 16px;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .cart-buttons .add {
        background: linear-gradient(to bottom, #f7dc6f, #f1c40f);
    }

    .cart-buttons .add:hover {
        background: linear-gradient(to bottom, #f1c40f, #d4ac0d);
    }

    .cart-buttons .buy {
        background: linear-gradient(to bottom, #f5b041, #e67e22);
    }

    .cart-buttons .buy:hover {
        background: linear-gradient(to bottom, #e67e22, #ca6f1e);
    }

    .divider {
        display: flex;
        align-items: center;
        text-align: center;
        margin: 10px 0;
    }

    .divider::before,
    .divider::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #ccc;
    }

    .divider::before {
        margin-right: 10px;
    }

    .divider::after {
        margin-left: 10px;
    }

    .best-price {
        background-color: #a4a4a4;
        color: black;
        padding: 6px;
        text-align: center;
        font-weight: bold;
        border-radius: 5px;
        margin: 15px 0 0;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
}
