/* =============================
   UG - karta produktu
   ============================= */

.ug-box {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 14px 16px;
    margin: 14px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.ug-title-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
}

.ug-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.ug-choice {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    margin: 0;
}

.ug-choice input {
    margin: 0;
}

.ug-text-wrap {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e7e7e7;
}

.ug-item-field {
    margin-bottom: 12px;
}

.ug-item-field label {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 5px;
}

#ug_fields .ug-text-input {
    width: 100%;
    background: #fff !important;
    border: 1px solid #cfcfcf !important;
    border-radius: 4px;
    color: #222;
    box-shadow: none;
    padding: 9px 11px;
}

#ug_fields .ug-text-input:focus {
    background: #fff !important;
    border-color: #999 !important;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,.04);
}

.ug-limit {
    display: block;
    margin-top: 6px;
    color: #777;
    line-height: 1.4;
}

.ug-error {
    margin-top: 7px;
    color: #b00020;
}

/* =============================
   UG - informacja
   ============================= */

.ug-info {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.ug-info-button {
    width: 19px;
    height: 19px;
    padding: 0;
    border: 1px solid #bcbcbc;
    border-radius: 50%;
    background: #fff;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
    text-align: center;
    cursor: help;
}

.ug-tooltip {
    display: none;
    position: absolute;
    z-index: 9999;
    top: 27px;
    left: 50%;
    transform: translateX(-25%);
    width: 285px;
    padding: 13px 15px;
    background: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    box-shadow: 0 5px 18px rgba(0,0,0,.13);
    color: #333;
    font-size: 12px;
    line-height: 1.45;
    text-align: left;
}

.ug-info:hover .ug-tooltip,
.ug-info:focus-within .ug-tooltip {
    display: block;
}

.ug-tooltip p {
    margin: 6px 0 8px;
}

.ug-tooltip-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px 12px;
    margin-bottom: 8px;
}

.ug-tooltip small {
    display: block;
    padding-top: 7px;
    border-top: 1px solid #eee;
    color: #777;
}

/* =============================
   UG - koszyk
   ============================= */

.ug-hidden-service {
    display: none !important;
}

.ug-cart-summary {
    box-sizing: border-box;
    width: 100%;
    padding: 10px 12px;
    margin: 0 auto 12px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    text-align: center;
    line-height: 1.45;
}

.ug-cart-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.ug-product-name {
    font-weight: 600;
    margin-top: 9px;
    margin-bottom: 4px;
    padding-top: 7px;
    border-top: 1px solid #eee;
}

.ug-cart-row {
    font-size: 13px;
    margin: 2px 0;
}

.ug-piece-label {
    margin-right: 4px;
}

.ug-piece-fee {
    margin-left: 5px;
    color: #777;
    font-size: 12px;
}

@media (max-width: 767px) {
    .ug-tooltip {
        width: 260px;
        left: 0;
        transform: none;
    }
}
