/* FürediPrint UTT – Kontúr stílusú termékoldal */

.fp-utt-wrap {
    font-family: inherit;
    margin: 20px 0;
    font-size: 14px;
}

/* Loading */
.fp-utt-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    padding: 24px 0;
    font-size: 14px;
}
.fp-utt-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-top-color: #0073aa;
    border-radius: 50%;
    animation: fp-spin 0.7s linear infinite;
}
@keyframes fp-spin { to { transform: rotate(360deg); } }

/* Filter */
.fp-utt-filters {
    margin-bottom: 12px;
}
.fp-utt-filters label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
}
.fp-utt-filters select {
    margin-left: 8px;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
}

/* Táblázat */
.fp-utt-table-wrap {
    overflow-x: auto;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.fp-utt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 600px;
}

.fp-utt-table thead tr {
    background: #f0f0f0;
}

.fp-utt-table th {
    padding: 10px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    color: #333;
    border-bottom: 2px solid #ddd;
    white-space: nowrap;
}

.fp-utt-table th.fp-col-color {
    text-align: left;
    min-width: 180px;
}

.fp-utt-table td {
    padding: 8px 10px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    line-height: 1.4;
}

.fp-utt-table td.fp-col-color {
    text-align: left;
}

.fp-utt-table tbody tr:hover td {
    background: #fafafa;
}

.fp-utt-table tbody tr:last-child td {
    border-bottom: none;
}

/* Szín oszlop */
.fp-color-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fp-color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.15);
    flex-shrink: 0;
    display: inline-block;
}

.fp-color-name {
    font-weight: 500;
    color: #222;
}

/* Cellák – ár + készlet */
.fp-cell-price {
    font-weight: 600;
    color: #222;
    font-size: 13px;
}

.fp-cell-stock {
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
}

.fp-cell-stock.in-stock {
    color: #2e7d32;
}

.fp-cell-stock.out-stock {
    color: #c62828;
}

.fp-cell-na {
    color: #ccc;
    font-size: 12px;
}

td.fp-out {
    opacity: 0.6;
}

/* Note */
.fp-utt-note {
    font-size: 12px;
    color: #888;
    margin: 8px 0 20px;
    line-height: 1.6;
}

/* Megrendelés box */
.fp-utt-order-box {
    background: #f7f8fa;
    border: 1px solid #dde1e7;
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 16px;
}

.fp-utt-order-box h3 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.fp-utt-order-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    align-items: flex-end;
}

.fp-utt-order-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 120px;
}

.fp-utt-order-field label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.fp-utt-order-field select,
.fp-utt-order-field input[type="number"] {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
    color: #222;
}

.fp-utt-order-total .fp-utt-total-display {
    font-size: 18px;
    font-weight: 700;
    color: #1565c0;
    padding: 6px 0;
}

.fp-utt-order-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fp-utt-btn-quote {
    background: #1565c0;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.fp-utt-btn-quote:hover {
    background: #0d47a1;
}

.fp-utt-btn-cart {
    background: #fff;
    color: #1565c0;
    border: 2px solid #1565c0;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.fp-utt-btn-cart:hover {
    background: #e3f2fd;
}

.fp-utt-order-note {
    font-size: 12px;
    color: #888;
    margin: 10px 0 0;
}

/* Reszponzív */
@media (max-width: 640px) {
    .fp-utt-order-row {
        flex-direction: column;
    }
    .fp-utt-order-field {
        width: 100%;
    }
    .fp-utt-btn-quote,
    .fp-utt-btn-cart {
        width: 100%;
        text-align: center;
    }
}
