/**
 * STF_CartGift - Styles du bloc cadeau (front-office).
 * Neutre et discret pour s'integrer a la majorite des themes.
 */
.stf-cartgift {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0;
    padding: 16px;
    border: 1px dashed #c9a227;
    border-radius: 8px;
    background: #fffdf5;
}

.stf-cartgift--accepted {
    border-style: solid;
    border-color: #3fa34d;
    background: #f4fbf5;
}

.stf-cartgift-media img {
    display: block;
    max-width: 90px;
    max-height: 90px;
    border-radius: 6px;
    object-fit: cover;
}

.stf-cartgift-body {
    flex: 1;
    min-width: 0;
}

.stf-cartgift-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.05em;
    margin-bottom: 4px;
}

.stf-cartgift-icon {
    font-size: 1.3em;
    line-height: 1;
}

.stf-cartgift-desc {
    color: #555;
    font-size: 0.92em;
    margin-bottom: 10px;
}

.stf-cartgift-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.stf-cartgift-form {
    margin: 0;
}

.stf-cartgift-btn {
    display: inline-block;
    padding: 8px 18px;
    border: none;
    border-radius: 4px;
    background: #c9a227;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.stf-cartgift-btn:hover {
    background: #b28f1f;
}

.stf-cartgift-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2e7d32;
    font-weight: 600;
}

.stf-cartgift-badge::before {
    content: "\2713";
}

.stf-cartgift-link {
    background: none;
    border: none;
    padding: 0;
    color: #999;
    text-decoration: underline;
    font-size: 0.85em;
    cursor: pointer;
}

.stf-cartgift-link:hover {
    color: #666;
}

.stf-cartgift-price {
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.9em;
}

/* --- Mode pool : grille de cadeaux au choix --- */
.stf-cartgift--pool {
    display: block;
}

.stf-cartgift-pool-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.stf-cartgift-pool-item {
    flex: 0 1 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fff;
}

.stf-cartgift-pool-item img {
    max-width: 100%;
    max-height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

.stf-cartgift-pool-name {
    font-size: 0.9em;
    font-weight: 600;
}

.stf-cartgift-pool-price {
    font-size: 0.85em;
    color: #2e7d32;
}

.stf-cartgift-pool-item form {
    margin: 0;
    width: 100%;
}

.stf-cartgift-pool-item .stf-cartgift-btn {
    width: 100%;
    padding: 6px 10px;
    font-size: 0.9em;
}
