/**
 * Gerrards Utilities - Gift Box Offer (GDL-65)
 *
 * @package Gerrards_Utilities
 */

/* Product page: the tick takes a full row of the add-to-basket form */
.gu-gift-box {
    flex: 0 0 100%;
    width: 100%;
    margin: 0 0 0.25rem;
}

.gu-gift-box--hidden {
    display: none;
}

.gu-gift-box__label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gb-text, #191919);
}

.gu-gift-box__label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--gb-navy, #16284f);
    cursor: pointer;
}

.gu-gift-box__thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 1px solid var(--gb-border, #e0e0e0);
    border-radius: 4px;
    background: #fff;
}

.gu-gift-box__text a {
    color: var(--gb-navy, #16284f);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gu-gift-box__text a:hover {
    color: var(--gb-gold, #c9a962);
}

.gu-gift-box__price {
    color: #555;
}

/* Basket: the box line sits under its coin */
.woocommerce-cart-form .gu-gift-box-line td.product-name {
    padding-left: 1.5rem;
}

.woocommerce-cart-form .gu-gift-box-line td.product-name::before {
    content: "\21B3";
    color: var(--gb-gold, #c9a962);
    margin-right: 0.4rem;
}

.gu-gift-box-line dl.variation {
    margin: 0.2rem 0 0;
    font-size: 0.85rem;
    color: #555;
}

@media (max-width: 768px) {
    .woocommerce-cart-form .gu-gift-box-line td.product-name {
        padding-left: 1rem;
    }
}
