/* inquiry.css */

/* Tablica liste upita */
.shop_table.woocommerce-cart-form__contents {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    text-align: left;
}

.shop_table th,
.shop_table td {
    border: 1px solid #ddd;
    padding: 10px;
    vertical-align: middle;
    text-align: left;
}

.shop_table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Remove link */
.shop_table td a.remove {
    color: #ff0000;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
}

.shop_table td a.remove:hover {
    color: #cc0000;
}

/* Input polja količine */
.quantity input.qty {
    width: 60px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-align: center;
}

/* Forma upita */
.wc-inquiry-form {
    margin-top: 30px;
    max-width: 500px;
    text-align: left;
    margin-right: auto;
    margin-left: 0;
}

.wc-inquiry-form input[type="text"],
.wc-inquiry-form input[type="email"],
.wc-inquiry-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    text-align: left;
}

.wc-inquiry-submit {
    background-color: #0189c5;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    align-self: flex-start;
}

.wc-inquiry-submit:hover {
    background-color: #016fa0;
}

/* Poruka nakon slanja */
p.sent-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: left;
}

/* Search input styling */
input[type="search"] {
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    border: 1px solid #0189c5;
    border-radius: 25px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 20px;
}
input[type="search"]:focus {
    border-color: #016fa0;
    box-shadow: 0 0 5px rgba(1,137,197,0.5);
}

/* Responsive za mobitel */
@media (max-width: 768px) {
    .shop_table thead {
        display: none;
    }

    .shop_table tr {
        display: block;
        margin-bottom: 15px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }

    .shop_table td {
        display: block;
        border: none;
        padding: 5px 0;
        text-align: left !important;
    }

    /* Prvi red: X + naziv + varijacije */
    .shop_table td.product-remove,
    .shop_table td.product-name {
        display: inline-block;
        vertical-align: middle;
    }

    .shop_table td.product-remove {
        margin-right: 10px;
    }

    .shop_table td.product-name {
        font-weight: 600;
    }

    /* Drugi red: cijena + količina + ukupno */
    .shop_table td.product-price,
    .shop_table td.product-quantity,
    .shop_table td.product-subtotal {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }

    /* Sakrij sliku */
    .shop_table td.product-thumbnail {
        display: none;
    }

    /* Ukini labels na mobilnom */
    .shop_table td::before {
        content: none;
    }

    /* Širi input za količinu na mobitelima (do 4 znamenke) */
    .shop_table td.product-quantity input.qty {
        width: 80px;
        font-size: 16px;
    }
    .wc-inquiry-qty{
        width: 80px;
    }
}
