.hotel-booking-integrated {
    font-family: inherit;
    color: inherit;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.hb-wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.hb-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hb-step-num {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hb-step.active .hb-step-num {
    background: var(--hb-primary, #c9a44a);
    color: #fff;
    box-shadow: 0 0 15px rgba(201, 164, 74, 0.4);
}

.hb-step-label {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
}

.hb-step.active .hb-step-label {
    color: inherit;
}

.hb-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    padding: 40px;
    border: 1px solid #f1f5f9;
}

.hb-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.hb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.hb-item-card {
    border: 2px solid #f1f5f9;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hb-item-card:hover {
    border-color: var(--hb-primary, #c9a44a);
    background: #fffdf9;
}

.hb-item-card.selected {
    border-color: var(--hb-primary, #c9a44a);
    background: #fffdf9;
    box-shadow: 0 5px 15px rgba(201, 164, 74, 0.1);
}

.hb-item-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.hb-item-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hb-item-price {
    color: var(--hb-primary, #c9a44a);
    font-weight: 800;
    font-size: 20px;
}

.hb-form-group {
    margin-bottom: 20px;
}

.hb-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.hb-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 16px;
}

.hb-btn {
    padding: 15px 30px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hb-btn-primary {
    background: var(--hb-primary, #c9a44a);
    color: #fff;
}

.hb-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.hb-btn-secondary {
    background: #f1f5f9;
    color: #475569;
}

.hb-footer-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 15px;
}
