 /* For tablets and mobile devices (combined up to 768px) */
 @media (max-width: 791px) {
    html, body {
        height: auto;
        overflow-y: auto;
    }

    body {
        font-family: Arial, sans-serif;
        padding: 0px;
        margin: 0;
        background: #f8f9fa;
    }

    .price-table {
        max-width: 92%;
        margin: 0 auto;
    }

    .package {
        margin-bottom: 8px;
        font-weight: bold;
        font-size: 14px;
    }

    .price-table table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 8px;
    }

    .price-table tr {
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 8px;
        overflow: hidden;
        transition: background-color 0.3s ease;
        outline: 1px solid #ccc;
    }

    .price-table th,
    .price-table td {
        padding: 10px;
        text-align: left;
        font-size: 14px;
        text-align: center;

    }

    

    .price-table tr:hover {
        background-color: #f0f8ff;
        cursor: pointer;
        border-left: 4px solid #00bcd4;
    }

    .price-table .selected {
        background-color: #e0f7fa;
        border-left: 4px solid #00bcd4;
        font-weight: bold;
    }

    .mobile-section {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }

    .price {
        color: #d84315;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .stock-icons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 5px;
    }

    .stock {
        color: green;
        font-weight: bold;
        font-size: 14px;
    }

    .icons {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-left: auto;
    }

    .icons button {
        border: none;
        background-color: orange;
        padding: 6px;
        border-radius: 50%;
        color: white;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .icons button:hover {
        background-color: #ff9500;
    }

    .cart-buttons button {
        display: block;
        width: 96%;
        margin-left: 8px;
        margin-bottom: 8px;
        padding: 10px;
        font-size: 14px;
        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);
    }

    .best-price {
        background-color: #a4a4a4;
        color: black;
        padding: 10px;
        text-align: center;
        font-weight: bold;
        border-radius: 5px;
        margin: 10px 0;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 14px;
    }

    .product-details {
        margin-top: 15px;
    }

    .product-details h3 {
        font-size: 16px;
    }

    .product-details ul {
        margin: 0;
        padding-left: 15px;
    }
    .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;
    }

    .quantity-section{
      margin-top: 20px;
      margin-bottom: 30px;
    }


     .quantity-section {
        margin-top: 18px;
        margin-bottom: 16px;
    }

   

}
@media (min-width: 1024px){
    

}