body .hogback-gv.container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
}
.hogback-gv.container {
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}
.hogback-gv .container,
.hogback-gv.container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.hogback-gv h1, .hogback-gv h2 { color: #2c3e50; }
.hogback-gv h1 { text-align: center; margin-bottom: 10px; }
.hogback-gv .brand-header { display: flex; align-items: center; gap: 12px; justify-content: center; }
.hogback-gv .brand-logo { height: 48px; width: auto; }
.hogback-gv .subtitle { text-align: center; color: #7f8c8d; margin-bottom: 30px; }
.hogback-gv .info-box { background-color: #e8f4f8; padding: 15px; border-radius: 5px; margin-bottom: 30px; font-size: 0.9em; }
.hogback-gv .flight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.hogback-gv .flight-option {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
    position: relative;
    margin-bottom: 30px;
}
.hogback-gv .flight-info {
    padding: 15px;
    padding-top: 0;
    padding-bottom: 30px;
}
.hogback-gv .flight-option:hover { box-shadow: 0 6px 16px rgba(0,0,0,0.12); transform: translateY(-2px); }
.hogback-gv .flight-option.selected { border-color: #3498db; box-shadow: 0 8px 18px rgba(52,152,219,0.18); }
.hogback-gv .flight-option h3 {
    font-size: 22px;
    margin-top: 0;
    color: #2980b9;
}
.hogback-gv .price-tag {
    background: #e74c3c;
    color: #fff;
    padding: 6px 10px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95em; 
}
.hogback-gv .flight-option .flight-image { width: 100%; height: auto; border-radius: 4px; margin-bottom: 12px; }

@media (max-width: 900px) {
    .hogback-gv .flight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .hogback-gv .flight-grid { grid-template-columns: 1fr; }
}
.hogback-gv .flight-option:hover { border-color: #3498db; background-color: #f0f8ff; }
.hogback-gv .flight-option.selected { border-color: #3498db; background-color: #e1f0fa; border-width: 2px; }
.hogback-gv .flight-details { font-size: 0.9em; color: #555; }
.hogback-gv .proof-info {
    line-height: 50px;
    font-style: italic;
    font-size: 0.85em;
    color: #777;
}
.hogback-gv .form-group { margin-bottom: 20px; }
.hogback-gv label { display: block; margin-bottom: 5px; font-weight: bold; }
.hogback-gv input[type="text"], .hogback-gv input[type="email"], .hogback-gv select, .hogback-gv textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }
.hogback-gv .totals-area { background-color: #f8f9fa; padding: 20px; border-radius: 5px; margin: 30px 0; border-top: 2px solid #3498db; }
.hogback-gv .total-row { display: flex; justify-content: space-between; margin-bottom: 10px; }
.hogback-gv .total-row.final { font-size: 1.3em; font-weight: bold; border-top: 1px solid #ddd; padding-top: 10px; margin-top: 10px; color: #2c3e50; }
.hogback-gv .btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #21409a;
    color: #feb71c;
    border: 2px solid #feb71c;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}
.hogback-gv .btn-submit:hover {
    background-color: #feb71c;
}
.hogback-gv .footer-note { text-align: center; font-size: 0.8em; color: #95a5a6; margin-top: 30px; }
.hogback-gv .flight-option input[type="radio"] { opacity: 0; position: absolute; width: 0; height: 0; }
.hogback-gv .giftcard-option input[type="checkbox"] { opacity: 0; position: absolute; width: 0; height: 0; }
.hogback-gv .cc-placeholder { background: #eee; padding: 20px; text-align: center; border: 1px dashed #aaa; color: #666; margin-bottom: 20px; }
.hogback-gv .flight-option:focus-within { outline: 2px solid #3498db; }

.hogback-gv .section-title { text-align: center; font-weight: 600; margin-bottom: 20px; color: #2c3e50; }
.hogback-gv .giftcard-grid .flight-info { padding-top: 10px; }
.hogback-gv .giftcard-image { position: relative; text-align: center; padding: 20px; background: #fff; }
.hogback-gv .giftcard-amount {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(33, 64, 154, 0.95);
    color: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    font-weight: 700;
}
