
.voucher_images_list {
    display: none !important;
}

.gift-wrapper {
    margin-bottom: 20px;
}

.gift-section {
    margin-bottom: 20px;
}

.gift-section h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

/* 2 column grid */
.gift-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Field styling */
.gift-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

.gift-field input,
.gift-field select,
.gift-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: #fff;
}

.gift-field input:focus,
.gift-field select:focus,
.gift-field textarea:focus {
    border-color: #7a5af8;
    box-shadow: 0 0 0 2px rgba(122,90,248,0.1);
    outline: none;
}

/* Radio buttons styled */
.gift-radio-group {
    display: flex;
    gap: 16px;
}

.gift-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
}

.gift-radio input {
    accent-color: #7a5af8;
    width: 16px;
    height: 16px;
}

/* Section spacing */
#single_room_fields,
#double_room_fields {
    display: none;
}

/* Price */
.gift-price {
    color: #385480 !important;
    font-family: "Playfair Display", serif;
    font-size: 48px !important;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 56px;
}

/* Responsive */
@media (max-width: 768px) {
    .gift-grid-2 {
        grid-template-columns: 1fr;
    }
    .gift-field {
        grid-column: span 1 !important;
    }
}

/* Remove quantity column completely */
.woocommerce-cart table.cart th.product-quantity,
.woocommerce-cart table.cart td.product-quantity,
.woocommerce-cart table.cart td.actions {
    display: none !important;
}

.wgv-voucher-body #voucher #product_price {
    font-weight: 900;
    letter-spacing: -0.01em;
}
.wgv-voucher-body #voucher #product_price span {
    font-family: inherit !important;
}